plll
1.0
|
Enumerates over all columns. For every column, a ConstColsEnumerator::ColEnumerator
object is returned which allows to enumerate over that column.
More...
#include <matrix.hpp>
Public Types | |
typedef ConstColEnumerator | Type |
The row enumerator type. | |
Public Member Functions | |
Type | current () const PLLL_INTERNAL_NOTHROW_POSTFIX_INLINE |
Returns a current column's enumerator. More... | |
bool | has_current () const PLLL_INTERNAL_NOTHROW_POSTFIX_INLINE |
Returns true if a current column exists and can be queried by the current() method. More... | |
void | next () PLLL_INTERNAL_NOTHROW_POSTFIX_INLINE |
Goes to the next element. More... | |
Enumerates over all columns. For every column, a ConstColsEnumerator::ColEnumerator
object is returned which allows to enumerate over that column.
Definition at line 2980 of file matrix.hpp.
|
inline |
Returns a current column's enumerator.
Definition at line 3014 of file matrix.hpp.
|
inline |
Returns true
if a current column exists and can be queried by the current()
method.
true
if a column is available. Definition at line 3025 of file matrix.hpp.
|
inline |
Goes to the next element.
Must only be called if has_current()
is true.
Definition at line 3035 of file matrix.hpp.