SheetXL - v0.3.20
    Preparing search index...

    Interface BoundedTuples<T>

    Adds precomputed bounds for the MajorTuples.

    In some scenarios the maximum bounds of the tuples is required (e.g., during rendering or calculations), providing precomputed bounds can improve performance by avoiding the need to scan the entire collection.

    interface BoundedTuples<T = any> {
        bounds: OrientatedCoords;
        tuples: GridTuple<T>;
    }

    Type Parameters

    • T = any
    Index

    Properties

    Properties

    The precomputed bounds encompassing all the MajorTuples.

    tuples: GridTuple<T>

    The bounded tuples.