SeqNext

Advances the cursor and returns the next element

Keywords

Parameters & Returns

Parameters

seq Sequence

Returns

Object

Quick Summary

Advances the cursor and returns the next element

Technical Exegesis...

Advances the Sequence's internal cursor forward by one and returns the new element. Syntax is 'SeqNext(seq)'. Used as an expression to walk a Sequence after SeqFirst. For a Sequence of Types, returns Null once the cursor steps past the last element, which makes 'While item <> Null' a clean way to walk the whole Sequence.

Example

Example.bam
; No example implemented yet