Sha256: 40d660116b3e93b60c0f245d5a9447a6c32afc5742a3d0b76697d95d30fbeaf4
Contents?: true
Size: 815 Bytes
Versions: 21
Compression:
Stored size: 815 Bytes
Contents
/* Copyright 2017-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) */ #ifndef BOOST_TT_IS_DETECTED_CONVERTIBLE_HPP_INCLUDED #define BOOST_TT_IS_DETECTED_CONVERTIBLE_HPP_INCLUDED #include <boost/type_traits/detected.hpp> #include <boost/type_traits/is_convertible.hpp> namespace boost { template<class To, template<class...> class Op, class... Args> using is_detected_convertible = is_convertible<detected_t<Op, Args...>, To>; #if !defined(BOOST_NO_CXX14_VARIABLE_TEMPLATES) template<class To, template<class...> class Op, class... Args> constexpr bool is_detected_convertible_v = is_detected_convertible<To, Op, Args...>::value; #endif } /* boost */ #endif
Version data entries
21 entries across 21 versions & 1 rubygems