gostream
gostream copied to clipboard
A Go port of the Java Streams API. Type-safe and functional Go Streams processing for Go 1.18+.
I like this library 😊. But I don't see `groupBy()` in the API. Is there any plan to add this API in the future? 🤔️
You should probably add [dropWhile](https://docs.oracle.com/javase/9/docs/api/java/util/stream/Stream.html#dropWhile-java.util.function.Predicate-) and [takeWhile](https://docs.oracle.com/javase/9/docs/api/java/util/stream/Stream.html#takeWhile-java.util.function.Predicate-) to support ending infinite streams based on some sort of condition. It could also be a good idea to add support for "finite...