19template<
bool... Vals>
struct all
21 constexpr static bool value =
true;
24template<
bool... Vals>
struct all<false, Vals...>
26 constexpr static bool value =
false;
29template<
bool... Vals>
struct all<true, Vals...>
40 std::vector<T> sorted_vec(vec.size());
41 std::transform(p.begin(), p.end(), sorted_vec.begin(), [&](std::size_t i) {
42 return std::move(vec[i]);
Base namespace for everything not included in the global namespace.
Definition: field_source.h:8