Koazee v0.0.1 Release Notes

Release Date: 2018-11-11 // over 5 years ago
  • ๐Ÿš€ 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