UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

30 lines (26 loc) 1.05 kB
// ets_tracing: off import * as Tp from "../../../../Collections/Immutable/Tuple/index.js" import type * as C from "../core.js" import * as Cross from "./cross.js" import * as Map from "./map.js" /** * Composes this stream with the specified stream to create a cartesian product of elements, * but keeps only elements from the other stream. * The `that` stream would be run multiple times, for every element in the `this` stream. */ export function crossRight_<R, R1, E, E1, A, A1>( self: C.Stream<R, E, A>, that: C.Stream<R1, E1, A1> ): C.Stream<R & R1, E | E1, A1> { return Map.map_(Cross.cross_(self, that), Tp.get(1)) } /** * Composes this stream with the specified stream to create a cartesian product of elements, * but keeps only elements from the other stream. * The `that` stream would be run multiple times, for every element in the `this` stream. * * @ets_data_first crossRight_ */ export function crossRight<R1, E1, A1>(that: C.Stream<R1, E1, A1>) { return <R, E, A>(self: C.Stream<R, E, A>) => crossRight_(self, that) }