REBOL 3 Docs | Guide | Concepts | Functions | Datatypes | Errors |
TOC < Back Next > | Updated: 3-Aug-2010 Edit History |
Returns the series forward or backward from the current position.
Arguments:
series [series! gob! port!]
offset [number! logic! pair!]
See also:
For example, SKIP series 1 is the same as NEXT. If skip attempts to move beyond the head or tail it will be stopped at the head or tail.
str: "REBOL"
print skip str 3
OL
blk: [11 22 33 44 55]
print skip blk 3
44 55
TOC < Back Next > | REBOL.com - WIP Wiki | Feedback Admin |