summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/example/cppcon_2014/functor.cpp
blob: b616a5241b1715c8df2fabe29f8366b208da935f (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
// 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/functional/placeholder.hpp>
#include <boost/hana/integral_constant.hpp>

#include "matrix/comparable.hpp"
#include "matrix/functor.hpp"
namespace hana = boost::hana;
using namespace cppcon;


int main() {
    // transform
    {
        BOOST_HANA_CONSTEXPR_LAMBDA auto m = matrix(
            row(1,              hana::int_c<2>, 3),
            row(hana::int_c<4>, 5,              6),
            row(7,              8,              hana::int_c<9>)
        );

        BOOST_HANA_CONSTEXPR_CHECK(hana::equal(
            hana::transform(m, hana::_ + hana::int_c<1>),
            matrix(
                row(2,              hana::int_c<3>, 4),
                row(hana::int_c<5>, 6,              7),
                row(8,              9,              hana::int_c<10>)
            )
        ));
    }
}