SheetXL - v0.3.20
    Preparing search index...

    Interface IFunctionCollection

    Collections of IFunction.

    interface IFunctionCollection {
        add(options: IFunction | IFunctionCollection.AddOptions): IFunction;
        getByName(name: string): IFunction;
        getCount(): number;
        search(options?: IFunctionCollection.SearchOptions): IFunction[];
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Convenience method for searching by name. This is functionally equivalent to search({ name });

      Parameters

      • name: string

        The name to search for This is case insensitive.

      Returns IFunction

    • Returns the total items available.

      Returns number

      Useful as a quick escape for search.