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.

ARGUMENTSEdit

  • string -- (Type: any-string)

SOURCE CODEEdit

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