- Some minor perf enhancements
- Removed a rogue
prn
intake-while
cascade.core/reduce-kv
cascade.hike/transform-keys
reduce
,transduce
,into
&map-into
now have the same order behavior as clojure core, i.e. they no longer callreverse
on lists & seqs on completion. This means that e.g.(map-into (cont-with inc) () (range 5))
now returns(5 4 3 2 1)
instead of(1 2 3 4 5)
.
- Reducing functions (
reduce
,transduce
,into
) now respectreduced
take
,take-while
,drop
, anddrop-while
- multi-collection
map
arity cat
transducer andmapcat
Extend IEqualWithContinuation
to nil
and Object
in order to remove
satisfies?
call in eq
, which should improve performance.
Docstrings to cascade.core/eq
and IEqualWithContinuation
.
Reversed arguments passed to -eq
method.