Skip to main content
Module

x/netzo/deno.d.ts>Deno.iter

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
function Deno.iter
Deprecated
Deprecated

Use iterateReader from https://deno.land/std/streams/conversion.ts instead. Deno.iter will be removed in Deno 2.0.

import { Deno } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";
const { iter } = Deno;

Turns a Reader, r, into an async iterator.

let f = await Deno.open("/etc/passwd");
for await (const chunk of Deno.iter(f)) {
  console.log(chunk);
}
f.close();

Second argument can be used to tune size of a buffer. Default size of the buffer is 32kB.

let f = await Deno.open("/etc/passwd");
const iter = Deno.iter(f, {
  bufSize: 1024 * 1024
});
for await (const chunk of iter) {
  console.log(chunk);
}
f.close();

Iterator uses an internal buffer of fixed size for efficiency; it returns a view on that buffer on each iteration. It is therefore caller's responsibility to copy contents of the buffer if needed; otherwise the next iteration will overwrite contents of previously returned chunk.

Parameters

optional
options: { bufSize?: number; }

Returns

AsyncIterableIterator<Uint8Array>