-
Notifications
You must be signed in to change notification settings - Fork 1
Why don't you support...
Todd Ginsberg edited this page Oct 13, 2024
·
3 revisions
A list of ideas and why Gatherers4j does not currently support them.
Because this can be done with existing functions:
Stream.of("A", "B")
.filter(it -> it.length() == 1)
.findFirst()
// Optional["A"]
Because this can be done with existing functions:
Stream.of("A", "B")
.filter(it -> it.length() == 1)
.gather(Gatherers4j.last(1))
.toList()
// ["B"]