XLL+ Class Library (7.0)

CXlArrayCellIterator<T>::CXlArrayCellIterator

Constructs a CXlArrayCellIterator object

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

Parameters

cont

The container across which this iterator will traverse.

offset

The index 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 CXlArrayCellIterator object. In normal usage, almost all instances of the iterator class are created using the container methods begin() and end().

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

CXlArrayCellIterator<T> Class | CXlArrayCellIterator<T> Methods