// ets_tracing: off import type * as Tp from "../../Tuple/index.js" import type { Chunk } from "../definition.js" import { zipWithIndexOffset_ } from "./zipWithIndexOffset.js" /** * Zips this chunk with the index of every element, starting from the initial * index value. */ export function zipWithIndex(self: Chunk): Chunk> { return zipWithIndexOffset_(self, 0) }