Rebol Programming/as-string

USAGE:

AS-STRING string 

DESCRIPTION:

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

AS-STRING is a native value.

ARGUMENTS

  • string -- (Type: any-string)

SOURCE CODE

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