REBOL 3 Concepts: Series: Series Datatypes
All series datatypes can be divided into two broad classes. Each includes a
datatype value and a type test function.
Contents
Block Types
Block Type
|
Description
|
---|
block!
|
Blocks of values
|
paren!
|
Blocks of values enclosed in parentheses
|
path!
|
Paths of values
|
list!
|
Linked lists
|
hash!
|
Associative arrays
|
String Types
Pseudo-types
Series datatypes are grouped into a few pseudo-types that make function
argument and type testing easier:
Type Test Functions
Block type tests:
Block? Paren? Path? List? Hash?
String type tests:
String? Binary? Tag? File? URL?
Email? Image? Issue?
Other series type tests:
Series? Any-block? Any-string?