Skip to content

Commit

Permalink
additional info on Java's Gatherers
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelficarra committed Mar 20, 2024
1 parent 1f48f28 commit b70c5e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ let chunksOf4 = Array.from(digits.windows(4, 4));
| Clojure | core | `partition` | `partition` | infinite empty lists | when insufficient padding;<br/>terminates after 1 |
| Elm | List.Extra | `groupsOf` | `groupsOfWithStep` | empty list | no |
| Haskell | split | `chunksOf` | `divvy` | infinite empty lists | yes |
| Java | Stream | `Gatherers.windowFixed` | `Gatherers.windowSliding` | N/A | N/A |
| Java | Stream | `Gatherers.windowFixed` | `Gatherers.windowSliding` | throws | no, step not configurable |
| Kotlin | Iterable | `chunked` | `windowed` | throws | configurable via parameter |
| .NET | System.Linq | `Enumerable.Chunk` | -- | throws | N/A |
| PHP | array | `array_chunk` | -- | throws | N/A |
Expand Down

0 comments on commit b70c5e2

Please sign in to comment.