REBOL 3 Docs Guide Concepts Functions Datatypes Errors
  TOC < Back Next >   Updated: 23-Feb-2009 Edit History  

REBOL 3 Concepts: Series

Pending Revision

This document was written for R2 and has yet to be revised for R3.

The concept of a series is fundamental in REBOL. You need to know it if you are going to be productive with REBOL.

Contents

Definition

A series is an ordered sequence of values.

The these values can be characters, as found in a string!, or they can be values as found in a block! series.

There are other types of series too, but they are similar to strings and blocks. For example, a file! and a url! are other types of string series. A path! and a paren! are block! series.

Example series:

string series:  "ABCD"

file series:    %example.txt

URL series:     http://www.rebol.com

block series:   [1 2 3 4]

paren series:   (1 + 2)

path series:    system/options

There several other series datatypes as well, but they are similar to strings or blocks.

Order of values

Editor note: This section is new or has has recently changed and is still under construction.

Main functions

Editor note: This section is new or has has recently changed and is still under construction.


  TOC < Back Next > REBOL.com - WIP Wiki Feedback Admin