All Versions
7
Latest Version
Avg Release Cycle
80 days
Latest Release
1838 days ago
Changelog History
Changelog History
-
v0.0.5
March 06, 2020 -
v0.0.4 Changes
January 13, 2019โ 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.
-
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
-
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