IOUtils

Description

static class Tinman.Core.IO.IOUtils

Helper class for this namespace.

Public / Methods

From​Base85


public static method FromBase85 → (1)

data in : string

[not-null]
The base-85 encoded string.

returns → int8 [ ]

The decoded binary data.

Decodes binary data from the given base-85 encoded string.

IOException

If data in is malformed.

See also

IOUtils.ToBase85

Task​Flush


public static method TaskFlush → (1)

parallel in : bool

Use parallel tasks for flushing? A parallel flush uses TaskPool.Parallelism background tasks to perform the flush.

returns → ITaskVoid<IFlushable>

The created ITaskVoid object.

A task that flushes the given object.

See also

IFlushable.Flush

To​Base85


public static method ToBase85 → (3)

data in : int8 [ ]

[not-null]
The binary data.

offset in : int32

[>=0]
Index of first array element to read.

count in : int32

[>=0]
Number of values to write.

returns → string

The base-85 encoded string.

Encodes the given binary data as base-85.