3#ifndef pRC_CORE_FUNCTORS_LOGICAL_AND_H
4#define pRC_CORE_FUNCTORS_LOGICAL_AND_H
20 template<
class XA,
class XB>
21 requires requires { declval<XA>() && declval<XB>(); }
22 constexpr decltype(
auto)
operator()(XA &&a, XB &&b)
const
24 return forward<XA>(a) && forward<XB>(b);
Definition cholesky.hpp:10
static constexpr auto identity()
Definition identity.hpp:13
Definition logical_and.hpp:12
static constexpr auto Identity()
Definition logical_and.hpp:15