SeqToArray

Returns the Sequence elements as an array

Keywords

Parameters & Returns

Parameters

seq Sequence

Returns

Object

Quick Summary

Returns the Sequence elements as an array

Technical Exegesis...

Returns the elements of a Sequence as a normal BambooBasic array of the same element type. Syntax is 'SeqToArray(seq)'. Used as an expression, e.g. 'Local a:Int[] = SeqToArray(nums)'. The counterpart to SeqFromArray.

Example

Example.bam
; No example implemented yet