An Enumerable over all ISymbols in this ISymbolList.

Namespace:  BioSharp.Core.Bio.Seq.Impl
Assembly:  BioSharp.Core (in BioSharp.Core.dll) Version: 0.1.3191.26120 (0.1.0.0)

Syntax

C#
public IEnumerable<ISymbol> Symbols { get; }

Implements

ISymbolList..::.Symbols

Remarks

This is an ordered enumerator over the ISymbols. It cannot be used to edit the underlying symbols.

NOTE: In BioJava, this was called iterator(), and returned the equivalent of an Enumerator rather than an Enumerable. The foreach idiom is so prevalent in .Net that this has been implemented has an Enumerable instead.

See Also