Documentation
    Preparing search index...

    Interface BuiltInLinqTraits<T>

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

    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 Iterable<T, any, any> | undefined

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