plll
1.0
|
An enumerator for a matrix' column. More...
#include <matrix.hpp>
Public Types | |
typedef base_matrix< T, Rows, Cols, StorageTraits, MathObject > ::GetCoeffSteps_Type | GetCoeffSteps_Type |
The intermediate type of the coefficients, which is returned by current() . | |
typedef T & | Type |
The final type of the coefficients. | |
Public Member Functions | |
Type | current () const PLLL_INTERNAL_NOTHROW_POSTFIX_INLINE |
Returns the current matrix entry. More... | |
template<typename Result > | |
void | get_current (Result &result) const PLLL_INTERNAL_NOTHROW_POSTFIX_CONDITIONAL(noexcept(result=*d_entry)) |
Creates a copy of the current matrix entry in result . More... | |
GetCoeffSteps_Type | get_current_steps () const PLLL_INTERNAL_NOTHROW_POSTFIX_INLINE |
Returns a GetCoeffSteps_Type object for the current entry. More... | |
bool | has_current () const PLLL_INTERNAL_NOTHROW_POSTFIX_INLINE |
Returns true if a current element exists and can be queried by the current() , get_current() and get_current_steps() methods. More... | |
void | next () PLLL_INTERNAL_NOTHROW_POSTFIX_INLINE |
Goes to the next element. More... | |
An enumerator for a matrix' column.
It sequentially enumerates the elements of a matrix' column
Definition at line 2552 of file matrix.hpp.
|
inline |
Returns the current matrix entry.
Definition at line 2580 of file matrix.hpp.
|
inlinenoexcept |
Creates a copy of the current matrix entry in result
.
result | An object to store the current element in. |
Definition at line 2591 of file matrix.hpp.
|
inline |
Returns a GetCoeffSteps_Type
object for the current entry.
GetCoeffSteps_Type
object for the current element. Definition at line 2601 of file matrix.hpp.
|
inline |
Returns true
if a current element exists and can be queried by the current()
, get_current()
and get_current_steps()
methods.
true
if an element is available. Definition at line 2612 of file matrix.hpp.
|
inline |
Goes to the next element.
Must only be called if has_current()
is true.
Definition at line 2622 of file matrix.hpp.