Skip to content

Series AT

Christopher Ross-Gill edited this page Aug 1, 2016 · 1 revision

Table of Contents

AT

Returns the series at the specified index. AT is an action value.

Arguments

series -- (Type: series port)
index -- Can be positive, negative, or zero. (Type: number logic pair)

Description

Provides a simple way to index into a series. AT returns the series at the new index point. Note that the operation is relative to the current position within the series.

numbers: [11] print at numbers 2

words: [grand] print first at words 2

remove at words 2 insert at words 3 [super] probe words

Categories

series � Operations on series, including blocks and strings.
string � Operations for string series.

See also

skip � Returns the series forward or backward from the current position.
pick � Returns the value at the specified position in a series.
head � Returns the series at its head.
tail � Returns the series at the position after the last value.

Comments

Clone this wiki locally