2
0
mirror of https://github.com/boostorg/hana.git synced 2026-02-02 08:52:11 +00:00

Huge reorganization and refactoring.

- Split type class instances into separate files
- Instances provided automatically by a type class are actually MCDs
- Test each instance in a single file, not one file per method
- Refactor the operator system to fix the ADL-related bug.
This commit is contained in:
Louis Dionne
2014-08-12 16:08:35 -04:00
parent 7894be3e2f
commit 307d3d0ec8
711 changed files with 15895 additions and 13363 deletions

View File

@@ -7,13 +7,17 @@ Distributed under the Boost Software License, Version 1.0.
#include <boost/hana/detail/assert.hpp>
#include <boost/hana/integer_list.hpp>
#include <boost/hana/integral.hpp>
#include <boost/hana/list/instance.hpp>
#include <boost/hana/tuple.hpp>
using namespace boost::hana;
int main() {
//! [main]
BOOST_HANA_CONSTANT_ASSERT(to<List>(integer_list<int, 0, 1, 2>) == list(int_<0>, int_<1>, int_<2>));
BOOST_HANA_CONSTANT_ASSERT(
to<Tuple>(integer_list<int, 0, 1, 2>)
==
tuple(int_<0>, int_<1>, int_<2>)
);
BOOST_HANA_CONSTANT_ASSERT(head(integer_list<int, 0, 1, 2>) == int_<0>);
//! [main]
}