XLL+ Class Library (7.0)

CXlArrayRowIterator<T>::CXlArrayRowIterator

Constructs a CXlArrayRowIterator object

CXlArrayRowIterator(
   const CXlArrayContainer<T>& cont,
   size_t offset = 0
);
CXlArrayRowIterator(
   const CXlArrayRowIterator<T>& s
);
CXlArrayRowIterator( );

Parameters

cont

The container across which this iterator will traverse.

offset

The zero-based index of the row within the array at which the iterator will start.

s

A source iterator which will be copied into the new instance.

Remarks

Constructs a new CXlArrayRowIterator object. In normal usage, almost all instances of the iterator class are created using the container methods begin_rows() and end_rows().

Note that iterators constructed using the parameterless constructor cannot be used until they have been set to point to a container, by using the = operator.

Requirements

Header: xlpfastit.h

See Also

CXlArrayRowIterator<T> Class | CXlArrayRowIterator<T> Methods