summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/tuple/special.transform.cpp
blob: 86d141c6e70dbb7775c6a7ee7a9d31c923569855 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// 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/equal.hpp>
#include <boost/hana/transform.hpp>
#include <boost/hana/tuple.hpp>
#include <boost/hana/type.hpp>
namespace hana = boost::hana;


template <typename ...>
struct F { struct type; };

struct x1;
struct x2;
struct x3;
struct x4;

int main() {
    // transform with tuple_t and a metafunction
    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::transform(hana::tuple_t<>, hana::metafunction<F>),
        hana::tuple_t<>
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::transform(hana::tuple_t<x1>, hana::metafunction<F>),
        hana::tuple_t<F<x1>::type>
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::transform(hana::tuple_t<x1, x2>, hana::metafunction<F>),
        hana::tuple_t<F<x1>::type, F<x2>::type>
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::transform(hana::tuple_t<x1, x2, x3>, hana::metafunction<F>),
        hana::tuple_t<F<x1>::type, F<x2>::type, F<x3>::type>
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::transform(hana::tuple_t<x1, x2, x3, x4>, hana::metafunction<F>),
        hana::tuple_t<F<x1>::type, F<x2>::type, F<x3>::type, F<x4>::type>
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::transform(hana::tuple_t<x1, x2, x3, x4>, hana::template_<F>),
        hana::tuple_t<F<x1>, F<x2>, F<x3>, F<x4>>
    ));
}