Closed merkste closed 1 year ago
To make code more readable, this PR adds static functions for concatenation to Reducible. Then
Reducible
new ChainedIterable.Of<>(iterables)
becomes
Reducible.concat(iterables)
or even
concat(iterables)
if concat is statically imported.
To make code more readable, this PR adds static functions for concatenation to
Reducible
. Thenbecomes
or even
if concat is statically imported.