summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/_include/auto/drop_while.hpp
blob: 054d79be049e89bdd6f95af2475598b69fd37f7d (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// 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)

#ifndef BOOST_HANA_TEST_AUTO_DROP_WHILE_HPP
#define BOOST_HANA_TEST_AUTO_DROP_WHILE_HPP

#include <boost/hana/assert.hpp>
#include <boost/hana/bool.hpp>
#include <boost/hana/drop_while.hpp>
#include <boost/hana/equal.hpp>
#include <boost/hana/functional/id.hpp>
#include <boost/hana/not_equal.hpp>

#include <laws/base.hpp>
#include "test_case.hpp"


TestCase test_drop_while{[]{
    namespace hana = boost::hana;
    using hana::test::ct_eq;

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(), hana::id),
        MAKE_TUPLE()
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(hana::true_c), hana::id),
        MAKE_TUPLE()
    ));
    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(hana::false_c), hana::id),
        MAKE_TUPLE(hana::false_c)
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(hana::true_c, hana::true_c), hana::id),
        MAKE_TUPLE()
    ));
    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(hana::true_c, hana::false_c), hana::id),
        MAKE_TUPLE(hana::false_c)
    ));
    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(hana::false_c, hana::true_c), hana::id),
        MAKE_TUPLE(hana::false_c, hana::true_c)
    ));
    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(hana::false_c, hana::false_c), hana::id),
        MAKE_TUPLE(hana::false_c, hana::false_c)
    ));

    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}), hana::not_equal.to(ct_eq<99>{})),
        MAKE_TUPLE()
    ));
    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}), hana::not_equal.to(ct_eq<1>{})),
        MAKE_TUPLE(ct_eq<1>{}, ct_eq<2>{})
    ));
    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{}), hana::not_equal.to(ct_eq<3>{})),
        MAKE_TUPLE(ct_eq<3>{})
    ));
    BOOST_HANA_CONSTANT_CHECK(hana::equal(
        hana::drop_while(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{}), hana::not_equal.to(ct_eq<0>{})),
        MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{})
    ));
}};

#endif // !BOOST_HANA_TEST_AUTO_DROP_WHILE_HPP