ixfx
    Preparing search index...

    Type Alias GridBoundsLogic

    GridBoundsLogic: "unbounded" | "undefined" | "stop" | "wrap"

    Bounds logic

    • Unbounded: attempts to read beyond limits
    • Undefined: returns undefined when reading beyond limits
    • Stop: returns cell value at edge of limits
    • Wrap: Wrap-around cell positions

    Type declaration

    • "unbounded"

      Unbounded: attempts to read beyond limits

    • "undefined"

      Undefined: returns undefined when reading beyond limits

    • "stop"

      Stop: returns cell value at edge of limits

    • "wrap"

      Wrap-around cell positions