FileReadChannel

A read channel over a File object.

Constructors

this
this(File in_)
Undocumented in source.

Members

Functions

hasData
bool hasData()

If the channel is open.

hasPendingData
bool hasPendingData()

If there is data to read, non blocking.

read
const(ubyte)[] read(size_t size)

Read at most s bytes from the channel.

read
ubyte[] read(ubyte[] buf)

Read at most s bytes from the channel.

Meta