Skip to content

Commit

Permalink
refactor(grid-iterators): update imports (transducers)
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 20, 2021
1 parent d2c6ead commit cab1ea8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/grid-iterators/src/columns.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { range2d } from "@thi.ng/transducers/iter/range2d";
import { map } from "@thi.ng/transducers/xform/map";
import { range2d } from "@thi.ng/transducers/range2d";
import { map } from "@thi.ng/transducers/map";
import { swapxy } from "./utils";

/**
Expand Down
4 changes: 2 additions & 2 deletions packages/grid-iterators/src/interleave.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { range2d } from "@thi.ng/transducers/iter/range2d";
import { map } from "@thi.ng/transducers/xform/map";
import { range2d } from "@thi.ng/transducers/range2d";
import { map } from "@thi.ng/transducers/map";
import { swapxy } from "./utils";

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/grid-iterators/src/random.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { shuffle } from "@thi.ng/arrays/shuffle";
import type { IRandom } from "@thi.ng/random";
import { SYSTEM } from "@thi.ng/random/system";
import { range } from "@thi.ng/transducers/iter/range";
import { range } from "@thi.ng/transducers/range";
import { asInt } from "./utils";

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/grid-iterators/src/rows.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { range2d } from "@thi.ng/transducers/iter/range2d";
import { range2d } from "@thi.ng/transducers/range2d";

/**
* Yields sequence of 2D grid coordinates in row-major order. Same as
Expand Down

0 comments on commit cab1ea8

Please sign in to comment.