//----------------------------------------------------------------------------- // boost variant/detail/element_index.hpp header file // See http://www.boost.org for updates, documentation, and revision history. //----------------------------------------------------------------------------- // // Copyright (c) 2014-2015 Antony Polukhin // // 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_VARIANT_DETAIL_ELEMENT_INDEX_HPP #define BOOST_VARIANT_DETAIL_ELEMENT_INDEX_HPP #include #include #include #include #include #include namespace boost { namespace detail { namespace variant { template struct variant_element_functor : boost::mpl::or_< boost::is_same, boost::is_same >, boost::is_same > {}; template struct element_iterator_impl : boost::mpl::find_if< Types, boost::mpl::or_< variant_element_functor, variant_element_functor::type > > > {}; template struct element_iterator : element_iterator_impl< typename Variant::types, typename boost::remove_reference::type > {}; template struct holds_element : boost::mpl::not_< boost::is_same< typename boost::mpl::end::type, typename element_iterator::type > > {}; }}} // namespace boost::detail::variant #endif // BOOST_VARIANT_DETAIL_ELEMENT_INDEX_HPP