blob: ac6fbb801ae0fc19075d2dc945a511eb39463cea [file] [log] [blame]
[/
Copyright 2018 Glen Joseph Fernandes
(glenjofe@gmail.com)
Distributed under the Boost Software License,
Version 1.0. (See accompanying file LICENSE_1_0.txt
or copy at http://www.boost.org/LICENSE_1_0.txt).
]
[section:is_detected_convertible is_detected_convertible]
template<class To, template<class...> class Op, class... Args>
using is_detected_convertible = is_convertible<detected_t<Op, Args...>, To>;
template<class To, template<class...> class Op, class... Args>
constexpr bool is_detected_convertible_v = is_detected_convertible<Op, Args...>::value;
__std_paper [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4502.pdf N4502]
__compat Requires C++11 variadic templates and C++11 template aliases.
__header `#include <boost/type_traits/is_detected_convertible.hpp>`
The type `is_detected_convertible<To, Op, Args>` is an alias for __true_type if the result of
`Op<Args>` is convertible to type `To`. Otherwise it's the type __false_type;
__examples
template<class T>
using size_type_t = typename T::size_type;
static_assert(boost::is_detected_convertible_v<std::size_t, size_type_t, T>);
See also: __is_detected, __is_detected_exact.
[endsect]