Skip to content

Commit d7b1e50

Browse files
committed
QA: Document concat()
1 parent 4c5b587 commit d7b1e50

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ The following operations return a new `Sequence` instance on which more intermed
101101
* **flatten** - Flattens sequences inside the sequence and returns a new list containing all values from all sequences.
102102
* **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*).
103103
* **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.
104105
* **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`).
105106
* **chunked** - Returns a chunked stream with chunks not exceeding the given size. The last chunk may have a smaller size.
106107
* **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

Comments
 (0)