import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Build a chunk from a sequence of values * * NOTE: different from Chunk#from this copies the elements 1 by 1 * allowing for binary to be correctly stored in typed arrays * @tsplus static Chunk.Ops __call * @tsplus static Chunk.Ops make * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/make" */ export declare function make(...iter: Elem): Chunk; //# sourceMappingURL=make.d.ts.map