Metadata-Version: 2.1
Name: x-axis-lib
Version: 0.0.1
Summary: module for testing weheather 2 x axis are overlapping
Home-page: https://github.com/qalfaki/py-lib/tree/master/x_axis_lib
Author: qalfaki
Author-email: qusai.alfaki@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

### check if 2 x axis are overlapping

* python library for checking whether 2  x axis are overlapping
- expected params lists/sets/tuples
- returned value is a `boolean`

### Installation:

`pip3 install x_axis_lib`


### Usage:

```
from x_axis.overlap import overlapping

result1 = overlapping([1, 2], [34, -2]) # True
result2 = overlapping((5, 6,) (1, 4,)) # True
result3 = overlapping({56, 100}, {49, 23}) # False

```


