SeqGet

Returns the element at an index

Keywords

Parameters & Returns

Parameters

seq Sequence
index Int

Returns

Object

Quick Summary

Returns the element at an index

Technical Exegesis...

Returns the element at a zero-based index in a Sequence. Syntax is 'SeqGet(seq, index)'. The returned value has the Sequence's element type. Used as an expression, for example 'Local v:Int = SeqGet(scores, 2)'. Pair with SeqLength to read a Sequence by index.

Example

Example.bam
; No example implemented yet