You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,7 @@ The following operations return a new `Sequence` instance on which more intermed
101
101
***flatten** - Flattens sequences inside the sequence and returns a new list containing all values from all sequences.
102
102
***distinct** - Returns a new sequence which only consists of unique elements. Uniqueness is calculated using the `util.Objects::hashOf()` method by default (*but can be passed another function*).
103
103
***zip** - Combines values from this sequence with a given enumerable value, optionally using a given transformation function.
104
+
***concat** - Concatenates this sequence with a given enumerable.
104
105
***sorted** - Returns a sorted collection. Can be invoked with a comparator function, a `util.Comparator` instance or the sort flags from PHP's sort() function (e.g. `SORT_NUMERIC | SORT_DESC`).
105
106
***chunked** - Returns a chunked stream with chunks not exceeding the given size. The last chunk may have a smaller size.
106
107
***windowed** - Returns a sliding window stream - a list of element ranges that you would see if you were looking at the collection through a sliding window of the given size.
0 commit comments