ixfx
    Preparing search index...
    • Logic types: 'row': left-to-right, top-to-bottom 'column': top-to-bottom, left-to-right 'neighbours': neighbours surrounding cell (eight) 'breadth`: breadth-first 'depth': depth-first 'random': any random cell in grid 'random-contiguous': any random cell neighbouring an already visited cell

      Parameters

      Returns (
          grid: Grid,
          optionsOverride?: Partial<
              Readonly<
                  {
                      boundsWrap: GridBoundsLogic;
                      debug: boolean;
                      reversed: boolean;
                      start: GridCell;
                      visited: ISetMutable<GridCell>;
                  },
              >,
          >,
      ) => Generator<GridCell>