/** * Provides extension methods for streams that are sorted by distinct keys. * * @tsplus type effect/core/stream/SortedByKey */ export type SortedByKey = Stream /** * @tsplus type effect/core/stream/SortedByKey,Ops */ export interface SortedByKeyOps { $: SortedByKeyAspects } export const SortedByKey: SortedByKeyOps = { $: {} } /** * @tsplus type effect/core/stream/SortedByKey.Aspects */ export interface SortedByKeyAspects {}