plll
1.0
|
Enumerates over all rows. For every row, a ConstRowsEnumerator::RowEnumerator
object is returned which allows to enumerate over that row.
More...
#include <matrix.hpp>
Public Types | |
typedef ConstRowEnumerator | Type |
The row enumerator type. | |
Public Member Functions | |
Type | current () const PLLL_INTERNAL_NOTHROW_POSTFIX_INLINE |
Returns a current row's enumerator. More... | |
bool | has_current () const PLLL_INTERNAL_NOTHROW_POSTFIX_INLINE |
Returns true if a current row 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 rows. For every row, a ConstRowsEnumerator::RowEnumerator
object is returned which allows to enumerate over that row.
Definition at line 2854 of file matrix.hpp.
|
inline |
Returns a current row's enumerator.
Definition at line 2888 of file matrix.hpp.
|
inline |
Returns true
if a current row exists and can be queried by the current()
method.
true
if a row is available. Definition at line 2899 of file matrix.hpp.
|
inline |
Goes to the next element.
Must only be called if has_current()
is true.
Definition at line 2909 of file matrix.hpp.