/* @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 #include #include #include #include using namespace boost::hana; using T = int; using U = long long; int main() { ////////////////////////////////////////////////////////////////////////// // Setup for the laws below ////////////////////////////////////////////////////////////////////////// auto sequences = make( std::integer_sequence{}, std::integer_sequence{}, std::integer_sequence{}, std::integer_sequence{}, std::integer_sequence{}, std::integer_sequence{}, std::integer_sequence{}, std::integer_sequence{} ); auto keys = make( integral_constant, integral_constant ); ////////////////////////////////////////////////////////////////////////// // Searchable ////////////////////////////////////////////////////////////////////////// { // laws test::TestSearchable{sequences, keys}; } }