Metafunction
Iterator
Type of iterator objects that are used to traverse the container.
Iterator<T, TSpec>::Type
Parameters
T
Type for which the iterator type is determined.
TSpec
Specifies an iterator spec.
Default: The default iterator spec is given by DefaultIteratorSpec.
Return Values
Type
Iterator type of T.
Functions
infixCreates infix object.
parseStringParses a string one character at a time and moves accordingly in the automaton.
prefixCreates prefix object.
setBeginSets begin of object in host.
setEndSets end of object in host.
suffixCreates suffix object.
Remarks
Iterators behave like pointers in some respects. For example, you can use *it to access the value object the iterator it points to. But note that Iterator<T>::Type can differ from T *, depending on T.
SeqAn - Sequence Analysis Library - www.seqan.de