Titi
Koazee release Titi (v0.0.1)
This first release provide a good set of operations with arrays:
- add: Add a new element into the stream.
- at: Obtain the element in the stream that is in the given position
- compose: Join 2 or more streams in a single one
- contains: Check if an element is found in the stream
- count: Return the number of elements in the stream
- drop: Drop an existing element in the stream
- filter: Discard those elements in the stream that do not match with the given conditions
- first: Obtain the first element in the stream
- foreach: Do something over all the elements in the stream
- last: Obtain the last element in the stream
- map: Convert the current elements in the stream into a different type
- reduce: Return the result after applying the provided function over all the items in the stream
- removeduplicates: Remove duplicates elements in the stream
- sort: Sort the elements in the stream
And the Koazee site documentation