简体   繁体   中英

C++ how to check for all variadic template type in a member function

eg I have the following Foo class with the foo() to check if all the types are std::int32_t

class Foo {
public:
    /// check if all the types are std::int32_t
    template<typename ...Ts>
    bool foo() {
        return true && std::is_same<Ts, std::int32_t>::value...;
    } 
};

int main()
{
    Foo f;
    std::cout<<f.template foo<std::int32_t, std::int32_t>(); //true
    std::cout<<f.template foo<std::int32_t, std::int64_t>(); //false

    return 0;
}

return true && std::is_same<Ts, std::int32_t>::value...; is not a correct syntax. How do I make it correct?

https://en.cppreference.com/w/cpp/language/fold

return (true && ... && std::is_same<Ts, std::int32_t>::value);
# or
return (std::is_same<Ts, std::int32_t>::value && ... && true);
# or really just
return (std::is_same<Ts, std::int32_t>::value && ...);

It looks like a variable template (since ), is mor appriopriate there. Using std::conjunction (since ) you can write less verbose.

#include <type_traits> // std::conjunction

struct Foo 
{
    // check if all the types are std::int32_t
    template<typename ...Ts>
    inline static constexpr bool areInt32 = std::conjunction_v<std::is_same<Ts, std::int32_t>...>;
};

And you write

std::cout << f.areInt32<std::int32_t, std::int32_t>;
//           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM