import type * as Tp from "../../../Collections/Immutable/Tuple/index.js"; import type * as OD from "../../../Ord/index.js"; import type * as S from "../_internal/core.js"; import type * as C from "./core.js"; /** * Zips this stream that is sorted by distinct keys and the specified * stream that is sorted by distinct keys to produce a new stream that is * sorted by distinct keys. Uses the functions `left`, `right`, and `both` * to handle the cases where a key and value exist in this stream, that * stream, or both streams. * * This allows zipping potentially unbounded streams of data by key in * constant space but the caller is responsible for ensuring that the * streams are sorted by distinct keys. */ export declare function zipAllSortedByKeyWith_(self: C.SortedByKey, that: C.SortedByKey, left: (a: A) => C1, right: (b: B) => C2, both: (a: A, b: B) => C3, ord: OD.Ord): S.Stream>; /** * Zips this stream that is sorted by distinct keys and the specified * stream that is sorted by distinct keys to produce a new stream that is * sorted by distinct keys. Uses the functions `left`, `right`, and `both` * to handle the cases where a key and value exist in this stream, that * stream, or both streams. * * This allows zipping potentially unbounded streams of data by key in * constant space but the caller is responsible for ensuring that the * streams are sorted by distinct keys. * * @ets_data_first zipAllSortedByKeyWith_ */ export declare function zipAllSortedByKeyWith(that: C.SortedByKey, left: (a: A) => C1, right: (b: B) => C2, both: (a: A, b: B) => C3, ord: OD.Ord): (self: C.SortedByKey) => S.Stream>; //# sourceMappingURL=zipAllSortedByKeyWith.d.ts.map