#pragma once #ifndef ANY_H_4G3QUOAN #define ANY_H_4G3QUOAN #include "rpc/detail/invoke.h" #include "rpc/detail/if.h" #include "rpc/detail/bool.h" namespace rpc { namespace detail { //! \brief Evaluates to true_type if any of its arguments is true_type. template struct any : false_ {}; template struct any : if_> {}; } } #endif /* end of include guard: ANY_H_4G3QUOAN */