Group Container Iterator Tags
Tags for container iterators.

Grouped Tags Overview

Detailed Description

The tags Standard and Rooted can be used for selecting specific iterator types with the Iterator metafunction. Rooted iterators also carry a pointer to the container they are iterating whereas standard iterators do not carry this information.

Grouped Tags Detail

struct Rooted_; typedef Tag<Rooted_> Rooted;

Defined in
<seqan/basic.h>
Tag for selecting rooted iterators.

struct Standard_; typedef Tag<Standard_> Standard;

Defined in
<seqan/basic.h>
Tag for selecting standard iterators.