Documentation / @ripl/utilities / arrayJoin
Function: arrayJoin() ​
arrayJoin<
TLeft,TRight>(leftInput,rightInput,predicate):ArrayJoin<TLeft,TRight>
Defined in: collection.ts:101
Performs a full join between two arrays, returning entries (left-only), updates (matched), and exits (right-only).
Type Parameters ​
| Type Parameter |
|---|
TLeft |
TRight |
Parameters ​
| Parameter | Type |
|---|---|
leftInput | TLeft[] |
rightInput | TRight[] |
predicate | ArrayJoinPredicate<TLeft, TRight> |
Returns ​
ArrayJoin<TLeft, TRight>