Releases: fmbenhassine/unix-stream
Releases · fmbenhassine/unix-stream
v0.5
v0.4
This release adds a new possibility to use UnixStream components with the standard Stream API:
- All filters have been extracted in the
Predicates
class - All transformers have been extracted in the
Functions
class
With this refactoring, it is now possible to use UnixStream as a components library 100% compatible with the standard Java Stream API. Here is an example:
Stream.of("1,foo", "2,bar")
.filter(Predicates.grep("a"))
.map(Functions.cut(",", 2))
.forEach(System.out::println);
//prints:
//bar
v0.3
"There are only two hard things in Computer Science: cache invalidation and naming things."
Phil Karlton
- renamed the project from UStream to UnixStream
- renamed base package from
io.github.benas.ustream
toio.github.benas.unixstream
v0.2
- renamed the project from XStream to UStream
- renamed base package from
io.github.benas.xstream
toio.github.benas.ustream
v0.1
- Initial API and implementation
- First set of components