Rebol Programming/charset

USAGE:

edit
CHARSET chars 

DESCRIPTION:

edit

Makes a bitset of chars for the parse function.

CHARSET is a function value.

ARGUMENTS

edit
  • chars -- (Type: string block)

SOURCE CODE

edit
charset: func [
    "Makes a bitset of chars for the parse function." 
    chars [string! block!]
][
    make bitset! chars
]