summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/string/laws.cpp
blob: 201c3f00711bf25a397f709e7323c8edf1212158 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// 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/string.hpp>
#include <boost/hana/tuple.hpp>

#include <laws/comparable.hpp>
#include <laws/foldable.hpp>
#include <laws/hashable.hpp>
#include <laws/iterable.hpp>
#include <laws/monoid.hpp>
#include <laws/orderable.hpp>
#include <laws/searchable.hpp>
namespace hana = boost::hana;


int main() {
    // Comparable and Hashable
    {
        auto strings = hana::make_tuple(
            BOOST_HANA_STRING(""),
            BOOST_HANA_STRING("a"),
            BOOST_HANA_STRING("ab"),
            BOOST_HANA_STRING("abc"),
            BOOST_HANA_STRING("abcd"),
            BOOST_HANA_STRING("abcde"),
            BOOST_HANA_STRING("ba")
        );

        hana::test::TestComparable<hana::string_tag>{strings};
        hana::test::TestHashable<hana::string_tag>{strings};
    }

    // Monoid
    {
        auto strings = hana::make_tuple(
            BOOST_HANA_STRING(""),
            BOOST_HANA_STRING("a"),
            BOOST_HANA_STRING("ab"),
            BOOST_HANA_STRING("abc"),
            BOOST_HANA_STRING("abcd"),
            BOOST_HANA_STRING("abcde"),
            BOOST_HANA_STRING("ba")
        );

        hana::test::TestMonoid<hana::string_tag>{strings};
    }

    // Foldable and Iterable
    {
        auto strings = hana::make_tuple(
            BOOST_HANA_STRING(""),
            BOOST_HANA_STRING("a"),
            BOOST_HANA_STRING("ab"),
            BOOST_HANA_STRING("abc"),
            BOOST_HANA_STRING("abcd"),
            BOOST_HANA_STRING("abcde"),
            BOOST_HANA_STRING("ba"),
            BOOST_HANA_STRING("afcd")
        );

        hana::test::TestFoldable<hana::string_tag>{strings};
        hana::test::TestIterable<hana::string_tag>{strings};
    }

    // Orderable
    {
        auto strings = hana::make_tuple(
            BOOST_HANA_STRING(""),
            BOOST_HANA_STRING("a"),
            BOOST_HANA_STRING("ab"),
            BOOST_HANA_STRING("abc"),
            BOOST_HANA_STRING("ba"),
            BOOST_HANA_STRING("abd")
        );

        hana::test::TestOrderable<hana::string_tag>{strings};
    }

    // Searchable
    {
        auto keys = hana::tuple_c<char, 'a', 'f'>;
        auto strings = hana::make_tuple(
            BOOST_HANA_STRING(""),
            BOOST_HANA_STRING("a"),
            BOOST_HANA_STRING("ab"),
            BOOST_HANA_STRING("abcd"),
            BOOST_HANA_STRING("ba"),
            BOOST_HANA_STRING("afcd")
        );

        hana::test::TestSearchable<hana::string_tag>{strings, keys};
    }
}