$extrastylesheet
libMesh::ConstTypeTensorColumn< T > Class Template Reference

#include <type_tensor.h>

List of all members.

Public Member Functions

 ConstTypeTensorColumn (const TypeTensor< T > &tensor, unsigned int j)
const T & operator() (const unsigned int i) const
const T & slice (const unsigned int i) const

Private Attributes

const TypeTensor< T > * _tensor
const unsigned int _j

Detailed Description

template<typename T>
class libMesh::ConstTypeTensorColumn< T >

Definition at line 398 of file type_tensor.h.


Constructor & Destructor Documentation

template<typename T>
libMesh::ConstTypeTensorColumn< T >::ConstTypeTensorColumn ( const TypeTensor< T > &  tensor,
unsigned int  j 
) [inline]

Definition at line 402 of file type_tensor.h.

                                        :
    _tensor(&tensor), _j(j) {}

Member Function Documentation

template<typename T>
const T& libMesh::ConstTypeTensorColumn< T >::operator() ( const unsigned int  i) const [inline]

Return the $ i,this $ element of the tensor.

Definition at line 409 of file type_tensor.h.

References libMesh::ConstTypeTensorColumn< T >::_j, and libMesh::ConstTypeTensorColumn< T >::_tensor.

  { return (*_tensor)(i,_j); }
template<typename T>
const T& libMesh::ConstTypeTensorColumn< T >::slice ( const unsigned int  i) const [inline]

Member Data Documentation

template<typename T>
const unsigned int libMesh::ConstTypeTensorColumn< T >::_j [private]

The documentation for this class was generated from the following file: