aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Array/BooleanRedux.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Array/BooleanRedux.h')
-rw-r--r--Eigen/src/Array/BooleanRedux.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/Eigen/src/Array/BooleanRedux.h b/Eigen/src/Array/BooleanRedux.h
index 6a5e208de..ab6e06d56 100644
--- a/Eigen/src/Array/BooleanRedux.h
+++ b/Eigen/src/Array/BooleanRedux.h
@@ -78,10 +78,8 @@ struct ei_any_unroller<Derived, Dynamic>
};
/** \array_module
- *
- * \returns true if all coefficients are true
*
- * \addexample CwiseAll \label How to check whether a point is inside a box (using operator< and all())
+ * \returns true if all coefficients are true
*
* Example: \include MatrixBase_all.cpp
* Output: \verbinclude MatrixBase_all.out
@@ -107,7 +105,7 @@ inline bool MatrixBase<Derived>::all() const
}
/** \array_module
- *
+ *
* \returns true if at least one coefficient is true
*
* \sa MatrixBase::all()
@@ -131,7 +129,7 @@ inline bool MatrixBase<Derived>::any() const
}
/** \array_module
- *
+ *
* \returns the number of coefficients which evaluate to true
*
* \sa MatrixBase::all(), MatrixBase::any()