limes 3.1.0
Composable Calculus Expressions for C++20
Loading...
Searching...
No Matches
limes::expr::EvaluableIntegral Concept Reference

Concept for types that can be evaluated as integrals. More...

#include <product_integral.hpp>

Concept definition

template<typename T>
concept limes::expr::EvaluableIntegral = requires(T t) {
{ t.eval() } -> std::same_as<algorithms::integration_result<typename T::value_type>>;
}
Concept for types that can be evaluated as integrals.

Detailed Description

Concept for types that can be evaluated as integrals.

Definition at line 217 of file product_integral.hpp.