AtomicStream.putString

Writes a string into the stream considering the character width and prefixing without advancing the stream position.

class AtomicStream
final shared
void
putString
(
CHAR
bool PREFIXED = false
)
(
immutable(CHAR)[] val
)

Parameters

CHAR

The character type used for writing the string (char, wchar, or dchar).

PREFIXED

Indicates whether the string is prefixed. Default is false.

val immutable(CHAR)[]

The string to be put into the stream.

Meta