Metadata-Version: 2.0
Name: collection-plus
Version: 0.0.5
Summary: Collection utils
Home-page: https://github.com/bruca/collections
Author: Bruca Lock
Author-email: lockshi@hotmail.com
License: UNKNOWN
Keywords: collection collections
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6

Description
------------
List of collections similar to JAVA style collection for Python

Installation
============

::

    $ pip install collection-pipelines


Usage
=====

.. code-block:: python

    from collection import *

    l = List()
    l.add(1)
    l.is_empty()

    vec = Vector()
    vec.add(1)

    stack = Stack()
    stack.push(1)
    stack.pop()
    item = stack.peek()

    queue = Queue()
    queue.offer(1)
    item = queue.peek()
    queue.poll()

Build Project
=============
source distribution: python setup.py sdist
wheel distribution:  python setup.py bdist_wheel


Distribute
==========
twine upload --repository-url https://test.pypi.org/legacy/ dist/*

