Sequence

Declares a general-purpose list container

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Declares a general-purpose list container

Technical Exegesis...

Declares a general-purpose list container. Used with 'Of' as 'Sequence Of Type' to declare a list that holds a single element type - a primitive (Int, Double, String) or a user-defined Type. Unlike the automatic per-Type instance list, a Sequence is created and managed explicitly and you may have as many as you like. A new Sequence starts empty. Elements are managed with the Seq* keywords (SeqAdd, SeqInsert, SeqGet, SeqSet, SeqDelete, SeqDeleteAt, SeqClear, SeqLength) and iterated with EachSeq...NextSeq.

Example

Example.bam
; No example implemented yet