go-streams
go-streams copied to clipboard
Stream Collections for Go. Inspired in Java 8 Streams and .NET Linq
Hi, I really loved your library! However I couldn't find [java .flatMap](https://docs.oracle.com/javase/8/docs/api/java/util/stream/Stream.html#flatMap-java.util.function.Function-) or [go youthlin-stream .FlatMap](https://github.com/youthlin/stream/blob/569337c4550e1b683bead2d1b77c096f21a0296d/example_test.go#L278) equivalent. Example: A stream of different size string arrays into stream of these arrays...
Do you think it would make sense to open discussion on [golang/go](https://github.com/golang/go/) if streams should become standard like in Java 8+? If Combined with IO file doesn't need to be...
```shell $ go version go version go1.20.6 darwin/arm64 ``` - step1 ```shell $ mkdir teststream && cd teststream && go mod init github.com/voidint/teststream && touch main.go ``` - step2 ```go...
Hi! With Java 8+ it's possible to read file using streams instead of using loop. This is so cool, as file isn't read entirely to memory. Now I'm facing this...