Files
utility/test/enable_if_lazy_test.cpp

99 lines
2.0 KiB
C++
Raw Normal View History

2003-09-05 18:22:13 +00:00
//
// Copyright 2003 <20> The Trustees of Indiana University.
2003-09-05 18:22:13 +00:00
//
// See the file enable_if_LICENSE for licensing conditions.
//
2003-10-06 21:53:54 +00:00
// Authors: Jaakko J<>rvi (jajarvi at osl.iu.edu)
// Jeremiah Willcock (jewillco at osl.iu.edu)
// Andrew Lumsdaine (lums at osl.iu.edu)
2003-09-05 18:22:13 +00:00
//
2003-11-03 20:45:20 +00:00
// Testing all variations of lazy_enable_if.
2003-09-05 18:22:13 +00:00
#include <boost/test/minimal.hpp>
#include <boost/mpl/not.hpp>
#include <boost/utility/enable_if.hpp>
2003-11-03 20:45:20 +00:00
#include <boost/type_traits/is_same.hpp>
2003-09-05 18:22:13 +00:00
using boost::lazy_enable_if;
using boost::lazy_disable_if;
using boost::lazy_enable_if_c;
using boost::lazy_disable_if_c;
2003-11-03 20:45:20 +00:00
template <class T>
struct is_int_or_double {
BOOST_STATIC_CONSTANT(bool,
value = (boost::is_same<T, int>::value ||
boost::is_same<T, double>::value));
};
2003-09-05 18:22:13 +00:00
template <class T>
struct some_traits {
2003-11-03 20:45:20 +00:00
typedef typename T::does_not_exist type;
2003-09-05 18:22:13 +00:00
};
template <>
struct some_traits<int> {
typedef bool type;
};
template <>
struct some_traits<double> {
typedef bool type;
};
template <class T>
struct make_bool {
typedef bool type;
};
template <>
struct make_bool<int> {};
template <>
struct make_bool<double> {};
namespace A {
template<class T>
2003-11-03 20:45:20 +00:00
typename lazy_enable_if<is_int_or_double<T>, some_traits<T> >::type
2003-09-05 18:22:13 +00:00
foo(T t) { return true; }
template<class T>
2003-11-03 20:45:20 +00:00
typename lazy_enable_if_c<is_int_or_double<T>::value, some_traits<T> >::type
2003-09-05 18:22:13 +00:00
foo2(T t) { return true; }
}
namespace B {
template<class T>
2003-11-03 20:45:20 +00:00
typename lazy_disable_if<is_int_or_double<T>, make_bool<T> >::type
2003-09-05 18:22:13 +00:00
foo(T t) { return false; }
template<class T>
2003-11-03 20:45:20 +00:00
typename lazy_disable_if_c<is_int_or_double<T>::value, make_bool<T> >::type
2003-09-05 18:22:13 +00:00
foo2(T t) { return false; }
}
int test_main(int, char*[])
{
using namespace A;
using namespace B;
2003-11-03 19:02:40 +00:00
BOOST_CHECK(foo(1));
BOOST_CHECK(foo(1.0));
2003-09-05 18:22:13 +00:00
2003-11-03 19:02:40 +00:00
BOOST_CHECK(!foo("1"));
BOOST_CHECK(!foo(static_cast<void*>(0)));
2003-09-05 18:22:13 +00:00
2003-11-03 19:02:40 +00:00
BOOST_CHECK(foo2(1));
BOOST_CHECK(foo2(1.0));
2003-09-05 18:22:13 +00:00
2003-11-03 19:02:40 +00:00
BOOST_CHECK(!foo2("1"));
BOOST_CHECK(!foo2(static_cast<void*>(0)));
2003-09-05 18:22:13 +00:00
return 0;
}