Bundle File and console I/O primitives. FileReader and FileWriter handle sequential file access; Console provides stdin/stdout operations. Included in lang.obl — no extra -lib flag needed.
Deserializer
Used to deserialize objects
Operations
- New
- ReadBool
- ReadBoolArray
- ReadByteArray
- ReadChar
- ReadCharArray
- ReadFloat
- ReadFloatArray
- ReadInt
- ReadIntArray
- ReadObject
- ReadObjectArray
New # constructor
Default constructor
New(buffer:Byte[])Parameters
| Name | Type | Description |
|---|---|---|
| buffer | Byte | input byte buffer to read from |
ReadBoolArray #
Reads an array of values
method : public : ReadBoolArray() ~ Bool[]Return
| Type | Description |
|---|---|
| Bool | array of values |
ReadByteArray #
Reads an array of values
method : public : ReadByteArray() ~ Byte[]Return
| Type | Description |
|---|---|
| Byte | array of values |
ReadCharArray #
Reads an array of values
method : public : ReadCharArray() ~ Char[]Return
| Type | Description |
|---|---|
| Char | array of values |
ReadFloatArray #
Reads an array of values
method : public : ReadFloatArray() ~ Float[]Return
| Type | Description |
|---|---|
| Float | array of values |