( other: IStreamBuilder<KeyValue<K, V2>>, )
| 360 | * @param other - The other stream to join with |
| 361 | */ |
| 362 | export 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 | } |