SeqSet

Overwrites the element at an index in a Sequence

Keywords

Parameters & Returns

Parameters

seq Sequence
index Int
value Object

Returns

Void

Quick Summary

Overwrites the element at an index in a Sequence

Technical Exegesis...

Overwrites the element at a zero-based index in a Sequence with a new value. Syntax is 'SeqSet seq, index, value'. Unlike SeqInsert, this replaces an existing element rather than adding one, so the length is unchanged. The value must match the Sequence's declared element type.

Example

Example.bam
; No example implemented yet