#include <unwrap.hpp>
Public Member Functions | |
| unwrap_to_elem_access (const Row< eT > &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 200 of file unwrap.hpp.
| unwrap_to_elem_access< Row< eT > >::unwrap_to_elem_access | ( | const Row< eT > & | A | ) | [inline] |
Definition at line 204 of file unwrap.hpp.
00205 : M(A) 00206 { 00207 arma_extra_debug_sigprint(); 00208 }
| eT unwrap_to_elem_access< Row< eT > >::operator[] | ( | const u32 | i | ) | const [inline] |
Definition at line 210 of file unwrap.hpp.
00210 { return M[i]; }
| eT unwrap_to_elem_access< Row< eT > >::operator() | ( | const u32 | i | ) | const [inline] |
Definition at line 211 of file unwrap.hpp.
00211 { return M(i); }
| eT unwrap_to_elem_access< Row< eT > >::operator() | ( | const u32 | in_row, | |
| const u32 | in_col | |||
| ) | const [inline] |
Definition at line 213 of file unwrap.hpp.
00213 { return M(in_row,in_col); }
| eT unwrap_to_elem_access< Row< eT > >::at | ( | const u32 | in_row, | |
| const u32 | in_col | |||
| ) | const [inline] |
Definition at line 214 of file unwrap.hpp.
00214 { return M.at(in_row,in_col); }
| const Row<eT>& unwrap_to_elem_access< Row< eT > >::M |
Definition at line 216 of file unwrap.hpp.