2
0
mirror of https://github.com/boostorg/hana.git synced 2026-01-22 05:12:35 +00:00
Files
hana/test/searchable.cpp
2016-02-04 11:07:41 -05:00

47 lines
1.4 KiB
C++

// Copyright Louis Dionne 2013-2016
// 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.hpp>
#include <boost/hana/bool.hpp>
#include <boost/hana/tuple.hpp>
#include <test/seq.hpp>
#include <laws/base.hpp>
#include <laws/searchable.hpp>
using namespace boost::hana;
using test::ct_eq;
int main() {
//////////////////////////////////////////////////////////////////////////
// Laws with a minimal Searchable
//////////////////////////////////////////////////////////////////////////
{
auto eqs = make<tuple_tag>(
test::seq()
, test::seq(ct_eq<0>{})
, test::seq(ct_eq<0>{}, ct_eq<1>{})
, test::seq(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{})
, test::seq(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{})
);
auto eq_keys = make<tuple_tag>(ct_eq<0>{}, ct_eq<3>{}, ct_eq<10>{});
test::TestSearchable<test::Seq>{eqs, eq_keys};
auto bools = make<tuple_tag>(
test::seq(true_c)
, test::seq(false_c)
, test::seq(true_c, true_c)
, test::seq(true_c, false_c)
, test::seq(false_c, true_c)
, test::seq(false_c, false_c)
);
test::TestSearchable<test::Seq>{bools, make<tuple_tag>(true_c, false_c)};
}
}