util.Channels.writeBinaryString
Writes a character string to a base.Channel
, without
the trailing zero.
Syntax
Important:
This feature is experimental, the syntax/name and semantics/behavior may change in a future version.
util.Channels.writeBinaryString(
out base.Channel
,
s STRING
)
- out is the channel to write to.
- s is the character string to be written.
Usage
The util.Channels.writeBinaryString()
writes the specified string into a base.Channel
object.
The bytes written to the channel represent characters in the encoding defined by the current application locale.
No string terminator (trailing zero) is written to the output channel.