Skip to content

Documentation / @ripl/utilities / ArrayJoin

Interface: ArrayJoin<TLeft, TRight>

Defined in: packages/utilities/src/collection.ts:34

Result of an array join containing unmatched left items, matched pairs, and unmatched right items.

Type Parameters

Type Parameter
TLeft
TRight

Properties

PropertyTypeDescriptionDefined in
inner[TLeft, TRight][]Matched pairs of left and right items (updates).packages/utilities/src/collection.ts:38
leftTLeft[]Left items with no matching right item (entries).packages/utilities/src/collection.ts:36
rightTRight[]Right items with no matching left item (exits).packages/utilities/src/collection.ts:40