2
0
mirror of https://github.com/boostorg/hana.git synced 2026-01-23 05:32:13 +00:00
Files
hana/example/cppcon_2014/functor.cpp
Louis Dionne 08f66d47c1 [IntegralConstant] Suffix variable templates with _c, and clean up type names
Along with PR #166, this closes #122 because names have now been
cleaned up and are now consistent basically everywhere.
2015-09-01 16:34:04 -04:00

36 lines
1003 B
C++

/*
@copyright Louis Dionne 2015
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
{
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>)
)
));
}
}