Rebol Programming/charset

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
]