Qore Programming Language Reference Manual
0.8.13
QC_InputStream.dox.h
1
namespace
Qore
{
4
12
class
InputStream
{
13
14
public
:
16
18
constructor
();
19
20
public
:
22
29
abstract
int
peek
();
30
31
public
:
33
44
abstract
*
binary
read
(
int
limit);
45
};
46
};
Qore::InputStream::read
abstract *binary read(int limit)
Reads bytes (up to a specified limit) from the input stream; returns NOTHING if there are no more byt...
Qore::binary
binary binary()
Always returns an empty binary object (of zero length)
Qore::InputStream::constructor
constructor()
Constructor.
Qore::InputStream::peek
abstract int peek()
Peeks the next byte available from the input stream; returns -1 if no more data available.
Qore
main Qore-language namespace
Definition:
Pseudo_QC_All.dox.h:2
Qore::InputStream
This class defines an abstract interface for input streams.
Definition:
QC_InputStream.dox.h:12