UNPKG

js-sdsl

Version:

javascript standard data structure library which benchmark against C++ STL

11 lines (10 loc) 354 B
import { ContainerIterator } from "../../ContainerBase"; import SequentialContainer from "./index"; export declare abstract class RandomIterator<T> extends ContainerIterator<T> { abstract readonly container: SequentialContainer<T>; get pointer(): T; set pointer(newValue: T); isAccessible(): boolean; pre(): this; next(): this; }