Skip to content

Commit b70c5e2

Browse files
additional info on Java's Gatherers
1 parent 1f48f28 commit b70c5e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ let chunksOf4 = Array.from(digits.windows(4, 4));
6666
| Clojure | core | `partition` | `partition` | infinite empty lists | when insufficient padding;<br/>terminates after 1 |
6767
| Elm | List.Extra | `groupsOf` | `groupsOfWithStep` | empty list | no |
6868
| Haskell | split | `chunksOf` | `divvy` | infinite empty lists | yes |
69-
| Java | Stream | `Gatherers.windowFixed` | `Gatherers.windowSliding` | N/A | N/A |
69+
| Java | Stream | `Gatherers.windowFixed` | `Gatherers.windowSliding` | throws | no, step not configurable |
7070
| Kotlin | Iterable | `chunked` | `windowed` | throws | configurable via parameter |
7171
| .NET | System.Linq | `Enumerable.Chunk` | -- | throws | N/A |
7272
| PHP | array | `array_chunk` | -- | throws | N/A |

0 commit comments

Comments
 (0)