Rebol Programming/as-string

USAGE:

edit
AS-STRING string 

DESCRIPTION:

edit

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

AS-STRING is a native value.

ARGUMENTS

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

SOURCE CODE

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