MCPcopy Create free account
hub / github.com/TanStack/db / fullJoin

Function fullJoin

packages/db-ivm/src/operators/join.ts:362–374  ·  view source on GitHub ↗
(
  other: IStreamBuilder<KeyValue<K, V2>>,
)

Source from the content-addressed store, hash-verified

360 * @param other - The other stream to join with
361 */
362export function fullJoin<
363 K,
364 V1 extends T extends KeyValue<infer _KT, infer VT> ? VT : never,
365 V2,
366 T,
367>(
368 other: IStreamBuilder<KeyValue<K, V2>>,
369): PipedOperator<T, KeyValue<K, [V1 | null, V2 | null]>> {
370 return join(other, `full`) as unknown as PipedOperator<
371 T,
372 KeyValue<K, [V1 | null, V2 | null]>
373 >
374}

Callers

nothing calls this directly

Calls 1

joinFunction · 0.85

Tested by

no test coverage detected