< Rebol Programming

USAGE:

CHARSET chars 

DESCRIPTION:

Makes a bitset of chars for the parse function.

CHARSET is a function value.

ARGUMENTS

  • chars -- (Type: string block)

SOURCE CODE

charset: func [
    "Makes a bitset of chars for the parse function." 
    chars [string! block!]
][
    make bitset! chars
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.