( other: IStreamBuilder<KeyValue<K, V2>>, )
| 288 | * @param other - The other stream to join with |
| 289 | */ |
| 290 | export function innerJoin< |
| 291 | K, |
| 292 | V1 extends T extends KeyValue<infer _KT, infer VT> ? VT : never, |
| 293 | V2, |
| 294 | T, |
| 295 | >( |
| 296 | other: IStreamBuilder<KeyValue<K, V2>>, |
| 297 | ): PipedOperator<T, KeyValue<K, [V1, V2]>> { |
| 298 | return join(other, `inner`) as unknown as PipedOperator< |
| 299 | T, |
| 300 | KeyValue<K, [V1, V2]> |
| 301 | > |
| 302 | } |
| 303 | |
| 304 | /** |
| 305 | * Joins two input streams (anti join) |
no test coverage detected