Home | History | Annotate | Download | only in plugins

Lines Matching full:operator

7 operator*(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
18 operator/(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
61 /** \returns an expression of the coefficient-wise \< operator of *this and \a other
66 * \sa all(), any(), operator>(), operator<=()
68 EIGEN_MAKE_CWISE_BINARY_OP(operator<,std::less)
70 /** \returns an expression of the coefficient-wise \<= operator of *this and \a other
75 * \sa all(), any(), operator>=(), operator<()
77 EIGEN_MAKE_CWISE_BINARY_OP(operator<=,std::less_equal)
79 /** \returns an expression of the coefficient-wise \> operator of *this and \a other
84 * \sa all(), any(), operator>=(), operator<()
86 EIGEN_MAKE_CWISE_BINARY_OP(operator>,std::greater)
88 /** \returns an expression of the coefficient-wise \>= operator of *this and \a other
93 * \sa all(), any(), operator>(), operator<=()
95 EIGEN_MAKE_CWISE_BINARY_OP(operator>=,std::greater_equal)
97 /** \returns an expression of the coefficient-wise == operator of *this and \a other
109 EIGEN_MAKE_CWISE_BINARY_OP(operator==,std::equal_to)
111 /** \returns an expression of the coefficient-wise != operator of *this and \a other
123 EIGEN_MAKE_CWISE_BINARY_OP(operator!=,std::not_equal_to)
132 * \sa operator+=(), operator-()
135 operator+(const Scalar& scalar) const
141 operator+(const Scalar& scalar,const EIGEN_CURRENT_STORAGE_BASE_CLASS<Derived>& other)
151 * \sa operator+(), operator-=()
154 operator-(const Scalar& scalar) const
160 operator-(const Scalar& scalar,const EIGEN_CURRENT_STORAGE_BASE_CLASS<Derived>& other)
165 /** \returns an expression of the coefficient-wise && operator of *this and \a other
167 * \warning this operator is for expression of bool only.
172 * \sa operator||(), select()
176 operator&&(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
183 /** \returns an expression of the coefficient-wise || operator of *this and \a other
185 * \warning this operator is for expression of bool only.
190 * \sa operator&&(), select()
194 operator||(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const