mirror of
https://github.com/boostorg/hana.git
synced 2026-02-21 15:12:21 +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:
@@ -5,29 +5,29 @@ Distributed under the Boost Software License, Version 1.0.
|
||||
*/
|
||||
|
||||
#include <boost/hana/detail/assert.hpp>
|
||||
#include <boost/hana/list/instance.hpp>
|
||||
#include <boost/hana/maybe.hpp>
|
||||
#include <boost/hana/tuple.hpp>
|
||||
using namespace boost::hana;
|
||||
|
||||
|
||||
int main() {
|
||||
//! [main]
|
||||
BOOST_HANA_CONSTEXPR_ASSERT(
|
||||
sequence<Maybe>(list(just(1), just('2'), just(3.3))) == just(list(1, '2', 3.3))
|
||||
sequence<Maybe>(tuple(just(1), just('2'), just(3.3))) == just(tuple(1, '2', 3.3))
|
||||
);
|
||||
|
||||
BOOST_HANA_CONSTANT_ASSERT(
|
||||
sequence<Maybe>(list(just(1), nothing, just(3.3))) == nothing
|
||||
sequence<Maybe>(tuple(just(1), nothing, just(3.3))) == nothing
|
||||
);
|
||||
|
||||
// This is a generalized Cartesian product.
|
||||
BOOST_HANA_CONSTEXPR_ASSERT(
|
||||
sequence<List>(list(list(1, 2, 3), list(4), list(5, 6)))
|
||||
sequence<Tuple>(tuple(tuple(1, 2, 3), tuple(4), tuple(5, 6)))
|
||||
==
|
||||
list(
|
||||
list(1, 4, 5), list(1, 4, 6),
|
||||
list(2, 4, 5), list(2, 4, 6),
|
||||
list(3, 4, 5), list(3, 4, 6)
|
||||
tuple(
|
||||
tuple(1, 4, 5), tuple(1, 4, 6),
|
||||
tuple(2, 4, 5), tuple(2, 4, 6),
|
||||
tuple(3, 4, 5), tuple(3, 4, 6)
|
||||
)
|
||||
);
|
||||
//! [main]
|
||||
|
||||
Reference in New Issue
Block a user