mirror of
https://github.com/boostorg/hana.git
synced 2026-02-21 15:12:21 +00:00
- 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.
35 lines
922 B
C++
35 lines
922 B
C++
/*
|
|
@copyright Louis Dionne 2014
|
|
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/detail/assert.hpp>
|
|
#include <boost/hana/maybe.hpp>
|
|
#include <boost/hana/tuple.hpp>
|
|
using namespace boost::hana;
|
|
|
|
|
|
int main() {
|
|
//! [main]
|
|
BOOST_HANA_CONSTEXPR_ASSERT(
|
|
sequence<Maybe>(tuple(just(1), just('2'), just(3.3))) == just(tuple(1, '2', 3.3))
|
|
);
|
|
|
|
BOOST_HANA_CONSTANT_ASSERT(
|
|
sequence<Maybe>(tuple(just(1), nothing, just(3.3))) == nothing
|
|
);
|
|
|
|
// This is a generalized Cartesian product.
|
|
BOOST_HANA_CONSTEXPR_ASSERT(
|
|
sequence<Tuple>(tuple(tuple(1, 2, 3), tuple(4), tuple(5, 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]
|
|
}
|