Documentation
    Preparing search index...

    Interface BuiltInLinqTraits<T>

    interface BuiltInLinqTraits<T> {
        "[TryGetCountDirectSymbol]"(): undefined | number;
        "[TryUnwrapUnorderedSymbol]"(): undefined | Iterable<T, any, any>;
    }

    Type Parameters

    • T
    Index

    Methods

    • Retrieves the input iterator, if the current LINQ wrapper is only re-ordering the items without changing their values (e.g., sorting).

      Returns undefined | Iterable<T, any, any>

      While this function also implies LinqWrapper.unwrap, implementation should not return this, as it can cause caller to enter infinite loop.