12#ifndef INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TYPE_TRAITS_ANY_OF_HPP_
13#define INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TYPE_TRAITS_ANY_OF_HPP_
32template <
bool...
Args>
33extern constexpr bool any_of_v =
false;
35template <
bool B1,
bool...
Args>
36extern constexpr bool any_of_v<
B1,
Args...> = B1 || any_of_v<Args...>;
Definition array_exceptions_disabled.cpp:11
constexpr bool any_of_v
Trait which tests if at least one value in a parameter pack is true .
constexpr bool any_of_v< B1, Args... >
Trait which tests if at least one value in a parameter pack is true .
Copyright 2026, Toyota Motor Corporation.
Definition array_exceptions_disabled.cpp:10