UNPKG

dastal

Version:

Data Structures & Algorithms implementations

7 lines (6 loc) 147 B
export interface Collection<T> extends Iterable<T> { /** * The number of elements in the collection. */ readonly size: number; }