]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/hana/test/tuple/special.fill.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / hana / test / tuple / special.fill.cpp
CommitLineData
b32b8144 1// Copyright Louis Dionne 2013-2017
7c673cae
FG
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
4
5#include <boost/hana/assert.hpp>
6#include <boost/hana/equal.hpp>
7#include <boost/hana/fill.hpp>
8#include <boost/hana/tuple.hpp>
9#include <boost/hana/type.hpp>
10namespace hana = boost::hana;
11
12
13struct x1;
14struct x2;
15struct x3;
16struct z;
17
18int main() {
19 // fill a tuple_t with a hana::type
20 BOOST_HANA_CONSTANT_CHECK(hana::equal(
21 hana::fill(hana::tuple_t<>, hana::type_c<z>),
22 hana::tuple_t<>
23 ));
24 BOOST_HANA_CONSTANT_CHECK(hana::equal(
25 hana::fill(hana::tuple_t<x1>, hana::type_c<z>),
26 hana::tuple_t<z>
27 ));
28 BOOST_HANA_CONSTANT_CHECK(hana::equal(
29 hana::fill(hana::tuple_t<x1, x2>, hana::type_c<z>),
30 hana::tuple_t<z, z>
31 ));
32 BOOST_HANA_CONSTANT_CHECK(hana::equal(
33 hana::fill(hana::tuple_t<x1, x2, x3>, hana::type_c<z>),
34 hana::tuple_t<z, z, z>
35 ));
36}