]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/type_traits/is_detected_exact.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / type_traits / is_detected_exact.hpp
CommitLineData
11fdf7f2
TL
1/*
2Copyright 2017-2018 Glen Joseph Fernandes
92f5a8d4 3(glenjofe@gmail.com)
11fdf7f2
TL
4
5Distributed under the Boost Software License,
6Version 1.0. (See accompanying file LICENSE_1_0.txt
7or copy at http://www.boost.org/LICENSE_1_0.txt)
8*/
9
10#ifndef BOOST_TT_IS_DETECTED_EXACT_HPP_INCLUDED
11#define BOOST_TT_IS_DETECTED_EXACT_HPP_INCLUDED
12
13#include <boost/type_traits/detected.hpp>
14#include <boost/type_traits/is_same.hpp>
15
16namespace boost {
17
18template<class Expected, template<class...> class Op, class... Args>
19using is_detected_exact = is_same<Expected, detected_t<Op, Args...> >;
20
21#if !defined(BOOST_NO_CXX14_VARIABLE_TEMPLATES)
22template<class Expected, template<class...> class Op, class... Args>
23constexpr bool is_detected_exact_v = is_detected_exact<Expected, Op,
24 Args...>::value;
25#endif
26
27} /* boost */
28
29#endif