Rebol Programming/as-binary

USAGE:

edit
AS-BINARY string 

DESCRIPTION:

edit

Coerces any type of string into a binary! datatype without copying it.

AS-BINARY is a native value.

ARGUMENTS

edit
  • string -- (Type: any-string)

SOURCE CODE

edit
as-binary: native[
    {Coerces any type of string into a binary! datatype without copying it.} 
    string [any-string!]
]