19 template<
typename X1,
typename... X>
20 inline Wrapper<X1>::Domain hull(
const X1& x1,
const X&... x)
22 if constexpr(
sizeof...(x) > 0)
23 return hull(x1) | hull(x...);
25 return x1.template cast<Interval>();
29 inline Wrapper<X>::Domain hull(
const std::list<X>& l)
33 typename Wrapper<X>::Domain e(1);
38 auto h = l.front().template cast<Interval>();
39 for(
const auto& li : l)
Definition codac2_OctaSym.h:21