import { Stream } from "@effect/core/stream/Stream/definition"; /** * Composes this stream with the specified stream to create a cartesian * product of elements. The `that` stream would be run multiple times, for * every element in the `this` stream. * * See also `Stream.zip` for the more common point-wise variant. * @tsplus static effect/core/stream/Stream.Aspects cross * @tsplus pipeable effect/core/stream/Stream cross * @tsplus location "@effect/core/stream/Stream/operations/cross" */ export declare function cross(that: Stream): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=cross.d.ts.map