Rebol Programming/as-binary
USAGE:
AS-BINARY string
DESCRIPTION:
Coerces any type of string into a binary! datatype without copying it.
AS-BINARY is a native value.
ARGUMENTS
- string -- (Type: any-string)
SOURCE CODE
as-binary: native[
{Coerces any type of string into a binary! datatype without copying it.}
string [any-string!]
]