UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

11 lines (10 loc) 238 B
/** * A queue that is faster than an array at large throughput */ export declare class LinkedQueue<A> { private head?; private last?; constructor(items?: Iterable<A>); push(value: A): void; shift(): A | undefined; }