/* @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 test::ct_eq; int main() { auto eq_arrays = make( std::array, 0>{} , std::array, 1>{} , std::array, 2>{} , std::array, 3>{} , std::array, 4>{} ); auto eq_keys = make(ct_eq<0>{}); ////////////////////////////////////////////////////////////////////////// // Searchable ////////////////////////////////////////////////////////////////////////// test::TestSearchable{eq_arrays, eq_keys}; }