Rebol Programming/charset
Appearance
USAGE:
[edit | edit source]CHARSET chars
DESCRIPTION:
[edit | edit source]Makes a bitset of chars for the parse function.
CHARSET is a function value.
ARGUMENTS
[edit | edit source]- chars -- (Type: string block)
SOURCE CODE
[edit | edit source]charset: func [ "Makes a bitset of chars for the parse function." chars [string! block!] ][ make bitset! chars ]