Skip to main content
Module

x/silicon/deps_deprecated.ts>io

Deno module to generate images from source code using Aloxaf/silicon.
Latest
namespace io
Deprecated
Deprecated

(will be removed after 1.0.0) Use Web Streams instead.

import { io } from "https://deno.land/x/silicon@v1.0.0/deps_deprecated.ts";

Utilities for working with Deno's readers, writers, and web streams.

Reader and Writer interfaces are deprecated in Deno, and so many of these utilities are also deprecated. Consider using web streams instead.

Classes

c
io.Buffer
deprecated

A variable-sized buffer of bytes with read() and write() methods.

c
io.BufReader
deprecated
c
io.BufWriter
deprecated

BufWriter implements buffering for an deno.Writer object. If an error occurs writing to a Writer, no more data will be accepted and all subsequent writes, and flush(), will return the error. After all data has been written, the client should call the flush() method to guarantee all data has been forwarded to the underlying deno.Writer.

c
io.BufWriterSync
deprecated

BufWriterSync implements buffering for a deno.WriterSync object. If an error occurs writing to a WriterSync, no more data will be accepted and all subsequent writes, and flush(), will return the error. After all data has been written, the client should call the flush() method to guarantee all data has been forwarded to the underlying deno.WriterSync.

c
io.LimitedReader
deprecated
c
io.MultiReader
deprecated

Reader utility for combining multiple readers

c
io.StringReader
deprecated

Reader utility for strings.

c
io.StringWriter
deprecated

Writer utility for buffering string chunks.

Functions

f
io.copyN
deprecated

Copy N size at the most. If read size is lesser than N, then returns nread

f
io.readDelim
deprecated

Read delimited bytes from a Reader.

f
io.readInt
deprecated

Read big endian 32bit integer from BufReader

f
io.readLines
deprecated

Read strings line-by-line from a Reader.

f
io.readLong
deprecated

Read big endian 64bit long from BufReader

f
io.readRange
deprecated

Read a range of bytes from a file or other resource that is readable and seekable. The range start and end are inclusive of the bytes within that range.

f
io.readRangeSync
deprecated

Read a range of bytes synchronously from a file or other resource that is readable and seekable. The range start and end are inclusive of the bytes within that range.

f
io.readShort
deprecated

Read big endian 16bit short from BufReader

Read Reader chunk by chunk, splitting based on delimiter.

Slice number into 64bit big endian byte array

Interfaces

I
io.ByteRange
deprecated

Result type returned by of BufReader.readLine().