XLL+ Class Library (7.0)

CXlArrayColumnIterator<T>::CXlArrayColumnIterator

Constructs a CXlArrayColumnIterator object

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

Parameters

cont

The container across which this iterator will traverse.

offset

The zero-based index of the column 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 CXlArrayColumnIterator object. In normal usage, almost all instances of the iterator class are created using the container methods begin_cols() and end_cols().

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

CXlArrayColumnIterator<T> Class | CXlArrayColumnIterator<T> Methods