1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
# 0.3.4.0
* Add `foldr` catamorphism and `fromInfinite` / `toInfinite` conversions.
* Add `iterateWithIndex` and `iterateWithIndexM`.
# 0.3.3.0
* Add `fromListWithDef`, `fromVectorWithDef`, `interleave`.
* Add `unfoldr` and `unfoldrM`.
* Export `tabulateFixM'`.
* Add `sliceSubvectors`, `traverseSubvectors`, `zipWithSubvectors` and `zipWithMSubvectors`.
* Deprecate `zipSubvectors` in favor of `zipWithSubvectors`.
# 0.3.2.0
* Implement `tabulateFix'`.
* Compatibility fixes.
# 0.3.1.0
* Define `Monad`, `MonadFix`, `MonadZip` instances.
* Define `Distributive` and `Representable` instances.
* Speed up `index`.
# 0.3.0.0
* Make `Chimera` polymorphic by vector type
* Implement `memoize` and `memoizeFix`.
* Implement `cycle` and `iterate`.
* Implement `mapSubvectors` and `zipSubvectors`
* Make boxed `tabulateFix` even lazier.
* Speed up `Data.Chimera.WheelMapping`.
* Remove `mapWithKey`, `traverseWithKey`, `zipWithKey`, `zipWithKeyM`.
# 0.2.0.0
* Generalize bit streams to `Chimera` datatype.
* Define `Applicative` instance.
* Implement `toList`, `trueIndices` and `falseIndices`.
* Make boxed `tabulateFix` lazier.
# 0.1.0.2
* Compatibility fixes.
# 0.1.0.1
* Compatibility fixes.
# 0.1.0.0
* Initial release.
|