Go to the source code of this file.
◆ EIGEN_ARRAY_DECLARE_GLOBAL_EIGEN_UNARY
#define EIGEN_ARRAY_DECLARE_GLOBAL_EIGEN_UNARY |
( |
|
NAME, |
|
|
|
FUNCTOR |
|
) |
| |
Value: \
template<typename Derived> \
struct NAME##_retval<ArrayBase<Derived> > \
{ \
}; \
template<typename Derived> \
struct NAME##_impl<ArrayBase<Derived> > \
{ \
{ \
return
typename NAME##_retval<ArrayBase<Derived> >
::type(
x.derived()); \
} \
};
Definition at line 38 of file GlobalFunctions.h.
◆ EIGEN_ARRAY_DECLARE_GLOBAL_UNARY
#define EIGEN_ARRAY_DECLARE_GLOBAL_UNARY |
( |
|
NAME, |
|
|
|
FUNCTOR, |
|
|
|
DOC_OP, |
|
|
|
DOC_DETAILS |
|
) |
| |