SeqIsEmpty

Returns True if a Sequence has no elements

Keywords

Parameters & Returns

Parameters

seq Sequence

Returns

Int

Quick Summary

Returns True if a Sequence has no elements

Technical Exegesis...

Returns True if a Sequence contains no elements, False otherwise. Syntax is 'SeqIsEmpty(seq)'. Used as an expression, typically in a condition. Equivalent to testing SeqLength(seq) = 0.

Example

Example.bam
; No example implemented yet