unwrap_to_elem_access< Op< Row< eT >, op_trans > > Class Template Reference
[Unwrap]

#include <unwrap.hpp>

List of all members.

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


Detailed Description

template<typename eT>
class unwrap_to_elem_access< Op< Row< eT >, op_trans > >

Definition at line 224 of file unwrap.hpp.


Constructor & Destructor Documentation

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

00232     : M(A.m)
00233     {
00234     arma_extra_debug_sigprint();
00235     }


Member Function Documentation

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

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

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

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


Member Data Documentation

template<typename eT >
const Row<eT>& unwrap_to_elem_access< Op< Row< eT >, op_trans > >::M

Definition at line 243 of file unwrap.hpp.