12#ifndef INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TYPE_TRAITS_ALL_OF_HPP_
13#define INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TYPE_TRAITS_ALL_OF_HPP_
30template <
bool...
Args>
31extern constexpr bool all_of_v =
true;
33template <
bool B1,
bool...
Args>
34extern constexpr bool all_of_v<
B1,
Args...> = B1 && all_of_v<Args...>;
Definition array_exceptions_disabled.cpp:11
constexpr bool all_of_v
Trait which tests if every value in a parameter pack is true .
constexpr bool all_of_v< B1, Args... >
Trait which tests if every value in a parameter pack is true .
Copyright 2026, Toyota Motor Corporation.
Definition array_exceptions_disabled.cpp:10