import { USTM } from "@effect/core/stm/STM/definition/base"; import { TQueue } from "@effect/core/stm/TQueue/definition"; /** * Creates a bounded queue with the dropping strategy. The queue will drop new * values if the queue is at capacity. * * For best performance use capacities that are powers of two. * @tsplus static effect/core/stm/TQueue.Ops dropping * @tsplus location "@effect/core/stm/TQueue/operations/dropping" */ export declare function dropping(requestedCapacity: number): USTM>; //# sourceMappingURL=dropping.d.ts.map