All Versions
7
Latest Version
Avg Release Cycle
80 days
Latest Release
1484 days ago

Changelog History

  • v0.0.5

    March 06, 2020
  • v0.0.4 Changes

    January 13, 2019

    Koazee Golden Lion

    โž• Added

    • โฌ‡๏ธ DropWhile :It removes the elements in the stream that match with the given input function.
    • IndexesOf :It returns the index for all the occurrences of the element in the stream.
    • GroupBy :It creates groups depending on the returned function value.
    • โž• Add new examples to repository koazee-samples

    ๐Ÿ”„ Changed

    • โšก๏ธ README has been updated with latest operations.
  • v0.0.3 Changes

    December 15, 2018

    โž• Added

    • โœ‚ DeleteAt : It remove the elements in the given position
    • IndexOf : It returns the index of the element in the stream.
    • LastIndexOf : It returns the last occurrence for the element in the stream.
    • Pop : It extracts the first element in the stream and return this and the new stream
    • Reverse : It reverses the sequence of elements in the stream.
    • Set : It replaces the element in the given index by the provided value
    • Take : It returns a stream with the elements between the given indexes
    • ๐Ÿ†• New repository with examples koazee-samples

    ๐Ÿ”„ Changed

    • โšก๏ธ README has been updated with latest operations.

    From this release Koazee is part of awesome-go
    Awesome

  • v0.0.3-alpha Changes

    December 14, 2018

    โž• Added

    ๐Ÿ†• New available operations:

    • โœ‚ DeleteAt : It remove the elements in the given position
    • IndexOf : It returns the index of the element in the stream.
    • LastIndexOf : It returns the last occurrence for the element in the stream.
    • Pop : It extracts the first element in the stream and return this and the new stream
    • Reverse : It reverses the sequence of elements in the stream.
    • Set : It replaces the element in the given index by the provided value
    • Take : It returns a stream with the elements between the given indexes

    From this release Koazee is part of awesome-go
    Awesome

  • v0.0.2 Changes

    December 02, 2018

    ๐Ÿš€ Koazee release Gelada (v0.0.2)

    โž• Added

    • โœ… Benchmark testing for all the operations Koazee Benchmark Report
    • Working with generated code instead of reflection for primitive streams
    • ๐ŸŽ Several changes in code to get a better performance
    • Full wiki Koazee wiki
    • Caching validation types in operations
    • ๐Ÿ†• New examples can be found here

    โœ‚ Removed

    • Compose operation
    • Interface S
    • ๐Ÿ—„ Logger is deprecated
    • ๐Ÿšš External Site has been removed
  • v0.0.2-alpha

    December 01, 2018
  • v0.0.1 Changes

    November 11, 2018

    ๐Ÿš€ 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