summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/example/type/is_valid.cpp
blob: a683e78f1b2e9a38e67d48e616ac7facd81c5ffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright Louis Dionne 2013-2017
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)

#include <boost/hana/assert.hpp>
#include <boost/hana/not.hpp>
#include <boost/hana/type.hpp>

#include <string>
#include <vector>
namespace hana = boost::hana;


int main() {
    // Checking for a member
    struct Person { std::string name; };
    auto has_name = hana::is_valid([](auto&& p) -> decltype((void)p.name) { });

    Person joe{"Joe"};
    static_assert(has_name(joe), "");
    static_assert(!has_name(1), "");


    // Checking for a nested type
    auto has_value_type = hana::is_valid([](auto t) -> hana::type<
        typename decltype(t)::type::value_type
    > { });

    static_assert(has_value_type(hana::type_c<std::vector<int>>), "");
    static_assert(!has_value_type(hana::type_c<Person>), "");
}