2
0
mirror of https://github.com/boostorg/hana.git synced 2026-01-22 17:22:30 +00:00
Files
hana/example/core/when.cpp
2015-02-04 18:10:17 -05:00

38 lines
742 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/core/when.hpp>
#include <type_traits>
using namespace boost::hana;
namespace example1 {
//! [when]
template <typename T, typename = when<true>>
struct base_template;
template <typename T>
struct base_template<T, when<std::is_integral<T>{}>> {
// something useful...
};
//! [when]
}
namespace example2 {
//! [when_valid]
template <typename T, typename = when<true>>
struct base_template;
template <typename T>
struct base_template<T, when_valid<typename T::value_type>> {
// something useful...
};
//! [when_valid]
}
int main() { }