Rebol Programming/charset

From Wikibooks, open books for an open world
Jump to navigation Jump to search

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
]