![]() |
Boost.uBlas 1.49
Linear Algebra in C++: matrices, vectors and numeric algorithms
|
#include <vector_expression.hpp>
Public Types | |
typedef self_type | closure_type |
typedef const self_type | const_closure_type |
typedef E::const_iterator | const_iterator |
typedef E::const_reference | const_reference |
typedef reverse_iterator_base < const_iterator > | const_reverse_iterator |
typedef E::difference_type | difference_type |
typedef vector_reference< E > | expression_type |
typedef boost::mpl::if_ < boost::is_const< E > , typename E::const_iterator, typename E::iterator >::type | iterator |
typedef boost::mpl::if_ < boost::is_const< E > , typename E::const_reference, typename E::reference >::type | reference |
typedef E | referred_type |
typedef reverse_iterator_base < iterator > | reverse_iterator |
typedef E::size_type | size_type |
typedef E::storage_category | storage_category |
typedef vector_tag | type_category |
typedef E::value_type | value_type |
Public Member Functions | |
BOOST_UBLAS_INLINE | vector_reference (referred_type &e) |
template<class AE > | |
BOOST_UBLAS_INLINE vector_reference & | assign (const vector_expression< AE > &ae) |
BOOST_UBLAS_INLINE const_iterator | begin () const |
BOOST_UBLAS_INLINE iterator | begin () |
BOOST_UBLAS_INLINE const_iterator | end () const |
BOOST_UBLAS_INLINE iterator | end () |
BOOST_UBLAS_INLINE referred_type & | expression () |
BOOST_UBLAS_INLINE const referred_type & | expression () const |
BOOST_UBLAS_INLINE const_iterator | find (size_type i) const |
BOOST_UBLAS_INLINE iterator | find (size_type i) |
template<class AE > | |
BOOST_UBLAS_INLINE vector_reference & | minus_assign (const vector_expression< AE > &ae) |
BOOST_UBLAS_INLINE const_reference | operator() (size_type i) const |
BOOST_UBLAS_INLINE expression_type & | operator() () |
BOOST_UBLAS_INLINE reference | operator() (size_type i) |
BOOST_UBLAS_INLINE const expression_type & | operator() () const |
template<class AT > | |
BOOST_UBLAS_INLINE vector_reference & | operator*= (const AT &at) |
template<class AE > | |
BOOST_UBLAS_INLINE vector_reference & | operator+= (const vector_expression< AE > &ae) |
template<class AE > | |
BOOST_UBLAS_INLINE vector_reference & | operator-= (const vector_expression< AE > &ae) |
template<class AT > | |
BOOST_UBLAS_INLINE vector_reference & | operator/= (const AT &at) |
BOOST_UBLAS_INLINE vector_reference & | operator= (const vector_reference &v) |
template<class AE > | |
BOOST_UBLAS_INLINE vector_reference & | operator= (const vector_expression< AE > &ae) |
BOOST_UBLAS_INLINE reference | operator[] (size_type i) |
BOOST_UBLAS_INLINE const_reference | operator[] (size_type i) const |
template<class AE > | |
BOOST_UBLAS_INLINE vector_reference & | plus_assign (const vector_expression< AE > &ae) |
BOOST_UBLAS_INLINE reverse_iterator | rbegin () |
BOOST_UBLAS_INLINE const_reverse_iterator | rbegin () const |
BOOST_UBLAS_INLINE const_reverse_iterator | rend () const |
BOOST_UBLAS_INLINE reverse_iterator | rend () |
BOOST_UBLAS_INLINE bool | same_closure (const vector_reference &vr) const |
BOOST_UBLAS_INLINE size_type | size () const |
BOOST_UBLAS_INLINE void | swap (vector_reference &v) |
Static Public Attributes | |
static const unsigned | complexity |
Private Types | |
typedef vector_reference< E > | self_type |
Private Attributes | |
referred_type & | e_ |
Definition at line 27 of file vector_expression.hpp.
typedef vector_reference<E> boost::numeric::ublas::vector_reference< E >::self_type [private] |
Definition at line 30 of file vector_expression.hpp.
typedef E::size_type boost::numeric::ublas::vector_reference< E >::size_type |
Definition at line 35 of file vector_expression.hpp.
typedef E::difference_type boost::numeric::ublas::vector_reference< E >::difference_type |
Definition at line 36 of file vector_expression.hpp.
typedef E::value_type boost::numeric::ublas::vector_reference< E >::value_type |
Definition at line 37 of file vector_expression.hpp.
typedef E::const_reference boost::numeric::ublas::vector_reference< E >::const_reference |
Definition at line 38 of file vector_expression.hpp.
typedef boost::mpl::if_<boost::is_const<E>, typename E::const_reference, typename E::reference>::type boost::numeric::ublas::vector_reference< E >::reference |
Definition at line 41 of file vector_expression.hpp.
typedef E boost::numeric::ublas::vector_reference< E >::referred_type |
Definition at line 42 of file vector_expression.hpp.
typedef const self_type boost::numeric::ublas::vector_reference< E >::const_closure_type |
Definition at line 43 of file vector_expression.hpp.
typedef self_type boost::numeric::ublas::vector_reference< E >::closure_type |
Definition at line 44 of file vector_expression.hpp.
typedef E::storage_category boost::numeric::ublas::vector_reference< E >::storage_category |
Definition at line 45 of file vector_expression.hpp.
typedef E::const_iterator boost::numeric::ublas::vector_reference< E >::const_iterator |
Definition at line 169 of file vector_expression.hpp.
typedef boost::mpl::if_<boost::is_const<E>, typename E::const_iterator, typename E::iterator>::type boost::numeric::ublas::vector_reference< E >::iterator |
Definition at line 172 of file vector_expression.hpp.
typedef reverse_iterator_base<const_iterator> boost::numeric::ublas::vector_reference< E >::const_reverse_iterator |
Definition at line 205 of file vector_expression.hpp.
typedef reverse_iterator_base<iterator> boost::numeric::ublas::vector_reference< E >::reverse_iterator |
Definition at line 206 of file vector_expression.hpp.
typedef vector_reference< E > boost::numeric::ublas::vector_expression< vector_reference< E > >::expression_type [inherited] |
Reimplemented from boost::numeric::ublas::ublas_expression< vector_reference< E > >.
Definition at line 187 of file expression_types.hpp.
typedef vector_tag boost::numeric::ublas::vector_expression< vector_reference< E > >::type_category [inherited] |
Definition at line 188 of file expression_types.hpp.
BOOST_UBLAS_INLINE boost::numeric::ublas::vector_reference< E >::vector_reference | ( | referred_type & | e | ) | [inline, explicit] |
Definition at line 49 of file vector_expression.hpp.
BOOST_UBLAS_INLINE size_type boost::numeric::ublas::vector_reference< E >::size | ( | ) | const [inline] |
Definition at line 54 of file vector_expression.hpp.
BOOST_UBLAS_INLINE const referred_type& boost::numeric::ublas::vector_reference< E >::expression | ( | ) | const [inline] |
Definition at line 61 of file vector_expression.hpp.
BOOST_UBLAS_INLINE referred_type& boost::numeric::ublas::vector_reference< E >::expression | ( | ) | [inline] |
Definition at line 65 of file vector_expression.hpp.
BOOST_UBLAS_INLINE const_reference boost::numeric::ublas::vector_reference< E >::operator() | ( | size_type | i | ) | const [inline] |
Definition at line 73 of file vector_expression.hpp.
BOOST_UBLAS_INLINE reference boost::numeric::ublas::vector_reference< E >::operator() | ( | size_type | i | ) | [inline] |
Definition at line 77 of file vector_expression.hpp.
BOOST_UBLAS_INLINE const_reference boost::numeric::ublas::vector_reference< E >::operator[] | ( | size_type | i | ) | const [inline] |
Definition at line 82 of file vector_expression.hpp.
BOOST_UBLAS_INLINE reference boost::numeric::ublas::vector_reference< E >::operator[] | ( | size_type | i | ) | [inline] |
Definition at line 86 of file vector_expression.hpp.
BOOST_UBLAS_INLINE vector_reference& boost::numeric::ublas::vector_reference< E >::operator= | ( | const vector_reference< E > & | v | ) | [inline] |
Definition at line 103 of file vector_expression.hpp.
BOOST_UBLAS_INLINE vector_reference& boost::numeric::ublas::vector_reference< E >::operator= | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 109 of file vector_expression.hpp.
BOOST_UBLAS_INLINE vector_reference& boost::numeric::ublas::vector_reference< E >::assign | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 115 of file vector_expression.hpp.
BOOST_UBLAS_INLINE vector_reference& boost::numeric::ublas::vector_reference< E >::operator+= | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 121 of file vector_expression.hpp.
BOOST_UBLAS_INLINE vector_reference& boost::numeric::ublas::vector_reference< E >::plus_assign | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 127 of file vector_expression.hpp.
BOOST_UBLAS_INLINE vector_reference& boost::numeric::ublas::vector_reference< E >::operator-= | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 133 of file vector_expression.hpp.
BOOST_UBLAS_INLINE vector_reference& boost::numeric::ublas::vector_reference< E >::minus_assign | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 139 of file vector_expression.hpp.
BOOST_UBLAS_INLINE vector_reference& boost::numeric::ublas::vector_reference< E >::operator*= | ( | const AT & | at | ) | [inline] |
Definition at line 145 of file vector_expression.hpp.
BOOST_UBLAS_INLINE vector_reference& boost::numeric::ublas::vector_reference< E >::operator/= | ( | const AT & | at | ) | [inline] |
Definition at line 151 of file vector_expression.hpp.
BOOST_UBLAS_INLINE void boost::numeric::ublas::vector_reference< E >::swap | ( | vector_reference< E > & | v | ) | [inline] |
Definition at line 158 of file vector_expression.hpp.
BOOST_UBLAS_INLINE bool boost::numeric::ublas::vector_reference< E >::same_closure | ( | const vector_reference< E > & | vr | ) | const [inline] |
Definition at line 164 of file vector_expression.hpp.
BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::vector_reference< E >::find | ( | size_type | i | ) | const [inline] |
Definition at line 176 of file vector_expression.hpp.
BOOST_UBLAS_INLINE iterator boost::numeric::ublas::vector_reference< E >::find | ( | size_type | i | ) | [inline] |
Definition at line 180 of file vector_expression.hpp.
BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::vector_reference< E >::begin | ( | ) | const [inline] |
Definition at line 187 of file vector_expression.hpp.
BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::vector_reference< E >::end | ( | ) | const [inline] |
Definition at line 191 of file vector_expression.hpp.
BOOST_UBLAS_INLINE iterator boost::numeric::ublas::vector_reference< E >::begin | ( | ) | [inline] |
Definition at line 196 of file vector_expression.hpp.
BOOST_UBLAS_INLINE iterator boost::numeric::ublas::vector_reference< E >::end | ( | ) | [inline] |
Definition at line 200 of file vector_expression.hpp.
BOOST_UBLAS_INLINE const_reverse_iterator boost::numeric::ublas::vector_reference< E >::rbegin | ( | ) | const [inline] |
Definition at line 209 of file vector_expression.hpp.
BOOST_UBLAS_INLINE const_reverse_iterator boost::numeric::ublas::vector_reference< E >::rend | ( | ) | const [inline] |
Definition at line 213 of file vector_expression.hpp.
BOOST_UBLAS_INLINE reverse_iterator boost::numeric::ublas::vector_reference< E >::rbegin | ( | ) | [inline] |
Definition at line 217 of file vector_expression.hpp.
BOOST_UBLAS_INLINE reverse_iterator boost::numeric::ublas::vector_reference< E >::rend | ( | ) | [inline] |
Definition at line 221 of file vector_expression.hpp.
BOOST_UBLAS_INLINE const expression_type& boost::numeric::ublas::vector_expression< vector_reference< E > >::operator() | ( | ) | const [inline, inherited] |
Definition at line 194 of file expression_types.hpp.
BOOST_UBLAS_INLINE expression_type& boost::numeric::ublas::vector_expression< vector_reference< E > >::operator() | ( | ) | [inline, inherited] |
Definition at line 198 of file expression_types.hpp.
referred_type& boost::numeric::ublas::vector_reference< E >::e_ [private] |
Definition at line 226 of file vector_expression.hpp.
const unsigned boost::numeric::ublas::vector_expression< vector_reference< E > >::complexity [static, inherited] |
Definition at line 186 of file expression_types.hpp.