BloombergLP::bdlt::DayOfWeekSet_Iter::DayOfWeekSet_Iter

Constructors

Synopses

Declared in <bdlt_dayofweekset.h>

Create a default (invalid) iterator.

DayOfWeekSet_Iter();
» more...

Create an iterator having the value of the specified original iterator.

DayOfWeekSet_Iter(DayOfWeekSet_Iter const& original);
» more...

Create an iterator using the specified data and index. If index is 1, this iterator references the first valid element of data; if index is 8, then this iterator references one past the last possible element in data. The behavior is undefined unless 0 == (data & 1), index >= 0, and index <= 8.

DayOfWeekSet_Iter(
    int data,
    int index);
» more...