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
+80Lines changed: 80 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,6 +116,8 @@ Quick Reference
116
116
|[`partialIntersectionCoercive`](#Partial-Intersection-Coercive)| Partial intersection with type coercion |`Set::partialIntersectionCoercive($minCount, ...$iterables)`|
117
117
|[`symmetricDifference`](#Symmetric-Difference)| Symmetric difference of iterables |`Set::symmetricDifference(...$iterables)`|
118
118
|[`symmetricDifferenceCoercive`](#Symmetric-Difference-Coercive)| Symmetric difference with type coercion |`Set::symmetricDifferenceCoercive(...$iterables)`|
119
+
|[`union`](#Union)| Union of iterables |`Set::union(...$iterables)`|
120
+
|[`unionCoercive`](#Union-Coercive)| Union with type coercion |`Set::unionCoercive(...$iterables)`|
119
121
120
122
#### Sort Iteration
121
123
| Iterator | Description | Code Snippet |
@@ -227,6 +229,8 @@ Quick Reference
227
229
|[`symmetricDifferenceWith`](#Symmetric-Difference-With)| Symmetric difference of iterable source and given iterables |`$this->symmetricDifferenceWith(...$iterables)`|
228
230
|[`symmetricDifference CoerciveWith`](#Symmetric-Difference-Coercive-With)| Symmetric difference of iterable source and given iterables with type coercion |`$this->symmetricDifferenceCoerciveWith( ...$iterables)`|
229
231
|[`takeWhile`](#Take-While-1)| Return elements from the iterable source as long as the predicate is true |`$stream->takeWhile($predicate)`|
232
+
|[`unionWith`](#Union-With)| Union of stream with iterables |`$stream->unionWith(...$iterables)`|
233
+
|[`unionCoerciveWith`](#Union-Coercive-With)| Union of stream with iterables with type coercion |`$stream->unionCoerciveWith(...$iterables)`|
230
234
|[`zipWith`](#Zip-With)| Iterate iterable source with another iterable collections simultaneously |`$stream->zipWith(...$iterables)`|
231
235
|[`zipLongestWith`](#Zip-Longest-With)| Iterate iterable source with another iterable collections simultaneously |`$stream->zipLongestWith(...$iterables)`|
232
236
|[`zipEqualWith`](#Zip-Equal-With)| Iterate iterable source with another iterable collections of equal lengths simultaneously |`$stream->zipEqualWith(...$iterables)`|
0 commit comments