plll
1.0
|
Enumerates over all columns. For every column, a ColsEnumerator::ColEnumerator
object is returned which allows to enumerate over that column.
More...
#include <matrix.hpp>
Public Types | |
typedef ColEnumerator | 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 ColsEnumerator::ColEnumerator
object is returned which allows to enumerate over that column.
Definition at line 2923 of file matrix.hpp.
|
inline |
Returns a current column's enumerator.
Definition at line 2947 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 2958 of file matrix.hpp.
|
inline |
Goes to the next element.
Must only be called if has_current()
is true.
Definition at line 2968 of file matrix.hpp.