import type { Transducer } from "./api.js"; /** * Transducer which performs value reordering on inputs using provided property * order. Accepts arrays or objects as input, but always yields arrays. * * @example * ```ts tangle:../export/swizzle.ts * import { swizzle } from "@thi.ng/transducers"; * * console.log( * [...swizzle([3, 0, 2, 1], [[1, 2, 3, 4], [10, 20, 30, 40]])] * ); * // [ [ 4, 1, 3, 2 ], [ 40, 10, 30, 20 ] ] * * console.log( * [...swizzle([0, 0, 1, 1], [[1, 2, 3, 4], [10, 20, 30, 40]])] * ); * // [ [ 1, 1, 2, 2 ], [ 10, 10, 20, 20 ] ] * * console.log( * [...swizzle(["z", "x"], [{x: 1, y: 2, z: 3}])] * ); * // [ [ 3, 1 ] ] * ``` * * @remarks * Also see * [`swizzle`](https://docs.thi.ng/umbrella/arrays/functions/swizzle.html) * * @param order - key order */ export declare function swizzle(order: PropertyKey[]): Transducer; export declare function swizzle(order: PropertyKey[], src: Iterable): IterableIterator; //# sourceMappingURL=swizzle.d.ts.map