Warning, file /include/boost/type_traits/detected.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_TT_DETECTED_HPP_INCLUDED
0011 #define BOOST_TT_DETECTED_HPP_INCLUDED
0012
0013 #include <boost/type_traits/detail/detector.hpp>
0014 #include <boost/type_traits/nonesuch.hpp>
0015
0016 namespace boost {
0017
0018 template<template<class...> class Op, class... Args>
0019 using detected_t = typename
0020 detail::detector<nonesuch, void, Op, Args...>::type;
0021
0022 }
0023
0024 #endif