* Overhauled __repr__ & __str__ methods for all classes * tests that ds == eval(repr(ds)) for all data structures ds in package * CLArray API is in a state of flux * no longer stores None as a value * __add__ concatenates, no longer component adds * maybe allow zero length CLArrays? * would make it a monoid and not just a semigroup * make an immutable version too? * Updated markdown overview documentation
0.10.1.0
* Removed flatMap methods from stateful objects * FLArray, DQueue, SQueue, PStack * kept the map method for each * some restructuring so package will scale better in the future
0.9.1
* First Beta release of grscheller.datastructures on PyPI * Infrastructure stable * Existing datastructures only should need API additions * Type annotations working extremely well * Using Pdoc3 to generate documentation on GitHub * see https://grscheller.github.io/datastructures/ * All iterators conform to Python language "iterator protocol" * Improved docstrings * Future directions: * Develop some "typed" containers * Add sequence & transverse methods to functional subpackage classes * Monad transformers??? * Need to use this package in other projects to gain insight
0.8.6.0
* Finally got queue.py & stack.py inheritance sorted out * LSP with Pyright working quite well * Goals for next PyPI release: * combine methods * tail and tailOr * cons and consOr * head and headOr
0.8.4.0
* new data structure FTuple added * wrapped tuple with a FP interface * initial minimal viable product
0.8.3.0
* major API breaking change * now two versions of Stack class * PStack (stateful) with push, pop, peak methods * FStack (immutable) with cons, tail, head methods * Dqueue renamed DQueue * FLarray renamed FLArray * tests now work