Metadata-Version: 2.1
Name: minmaxplus
Version: 0.2.0
Summary: Min and Max functions and classes for python
Home-page: http://github.com/alexpdev/MinMax+
Author: alexpdev
Author-email: alexpdev@protonmail.com
License: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Project-URL: Source Code, https://github.com/alexpdev/MinMaxObj
Keywords: arrays,algorithm,minimum,maximum
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
License-File: LICENSE

# MinMax+

MinMax+ provides a few functions that extend python's built in `min` and `max` functions.

## Requires

- Python 3+
- pip

## Installing

```bash
pip install minmaxplus
```

## Usage

Import the module into your source code as needed.

```python
import minmaxplus
from minmaxplus import minp, maxp, minmax
```

## Functions

- minp
  - requires indexed iterable sequence as arguement
  - calculates and returns minimum value and it's index
- maxp
  - requires indexed iterable sequence as arguement
  - calculates and returns maximum value and it's index
- minmax
  - requires an indexed iterable sequence as arguement
  - calculates and returns minimum and maximum values and their indeces

## License

GNU Lesser General Public License v3.0


