unwrap_to_elem_access< Row< eT > > Class Template Reference
[Unwrap]

#include <unwrap.hpp>

List of all members.

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


Detailed Description

template<typename eT>
class unwrap_to_elem_access< Row< eT > >

Definition at line 200 of file unwrap.hpp.


Constructor & Destructor Documentation

template<typename eT >
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     }


Member Function Documentation

template<typename eT >
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]; }

template<typename eT >
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); }

template<typename eT >
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);    }

template<typename eT >
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); }


Member Data Documentation

template<typename eT >
const Row<eT>& unwrap_to_elem_access< Row< eT > >::M

Definition at line 216 of file unwrap.hpp.