/** * @packageDocumentation * @module std.internal */ export interface IPushBack { /** * Insert an element at the end. * * @param val Value to insert. */ push_back(val: T): void; } export declare namespace IPushBack { type ContainerType> = Range extends IPushBack ? Range : unknown; type IteratorType> = Range extends IPushBack ? Iterator : unknown; } //# sourceMappingURL=IPushBack.d.ts.map