#include <unwrap.hpp>
Public Member Functions | |
unwrap_to_elem_access (const Op< Row< eT >, op_trans > &A) | |
eT | operator[] (const u32 i) const |
eT | operator() (const u32 i) const |
eT | operator() (const u32 in_row, const u32 in_col) const |
eT | at (const u32 in_row, const u32 in_col) const |
Public Attributes | |
const Row< eT > & | M |
Definition at line 224 of file unwrap.hpp.
unwrap_to_elem_access< Op< Row< eT >, op_trans > >::unwrap_to_elem_access | ( | const Op< Row< eT >, op_trans > & | A | ) | [inline] |
Definition at line 231 of file unwrap.hpp.
eT unwrap_to_elem_access< Op< Row< eT >, op_trans > >::operator[] | ( | const u32 | i | ) | const [inline] |
Definition at line 237 of file unwrap.hpp.
00237 { return M[i]; }
eT unwrap_to_elem_access< Op< Row< eT >, op_trans > >::operator() | ( | const u32 | i | ) | const [inline] |
Definition at line 238 of file unwrap.hpp.
00238 { return M(i); }
eT unwrap_to_elem_access< Op< Row< eT >, op_trans > >::operator() | ( | const u32 | in_row, | |
const u32 | in_col | |||
) | const [inline] |
Definition at line 240 of file unwrap.hpp.
00240 { return M(in_row,in_col); }
eT unwrap_to_elem_access< Op< Row< eT >, op_trans > >::at | ( | const u32 | in_row, | |
const u32 | in_col | |||
) | const [inline] |
Definition at line 241 of file unwrap.hpp.
00241 { return M.at(in_row,in_col); }
Definition at line 243 of file unwrap.hpp.