Metadata-Version: 1.2
Name: funky-collections
Version: 0.1.0.dev0
Summary: A collection of custom collections implamented in pure python.
Home-page: https://github.com/erinxocon/funky-collections
Author: Erin O'Connell
Author-email: erinocon5@gmail.com
License: MIT
Description: 
        # funky-collections
        
        A set of collections implamented in pure python.  Nessesary?  No, probably not; most of the built in collections are writtten in C so they will be faster, but I was challenged to build a lower level c style collection the other day in python and my interest has been piqued! All collections are currently implamented using a doubly linked array approach with some optimizations of the special methods that most sequence types contain.
        
        Currently Available:
        
        * Immutable Lists
        * Immutable Fixed Length Lists
        * Mutable Lists sort of
        * Mutable Fixed Lenth Lists sort of
        
        Todo:
        * Sets
        * Tuples
        * FIFO Stack
        * FILO Stack
        * Optimize collections by introducing new tree search methods
        * Test all of the things!
        * Benchmark all of the things!
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.4.0
