SeqContains

Returns True if a value is present in a Sequence

Keywords

Parameters & Returns

Parameters

seq Sequence
value Object

Returns

Int

Quick Summary

Returns True if a value is present in a Sequence

Technical Exegesis...

Returns True if the given value exists in the Sequence, False otherwise. Syntax is 'SeqContains(seq, value)'. Used as an expression. To get the position instead of a yes/no answer, use SeqFind.

Example

Example.bam
; No example implemented yet