KC's Workspace
    Preparing search index...

    Interface OrderedCollection<T>

    Interface representing all oredered collections. This includes List, Stack, Map, OrderedMap, Set, and OrderedSet. return of isOrdered() return true in that case.

    interface OrderedCollection<T> {
        "[iterator]"(): IterableIterator<T>;
        toArray(): T[];
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index
    • Shallowly converts this collection to an Array.

      Returns T[]