Server IP : 104.21.38.3 / Your IP : 162.158.88.163 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/bimap/ |
Upload File : |
// Boost.Bimap // // Copyright (c) 2006-2007 Matias Capeletto // // 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) /// \file unconstrained_set_of.hpp /// \brief Include support for set constrains for the bimap container #ifndef BOOST_BIMAP_UNCONSTRAINED_SET_OF_HPP #define BOOST_BIMAP_UNCONSTRAINED_SET_OF_HPP #if defined(_MSC_VER) #pragma once #endif #include <boost/config.hpp> #include <boost/bimap/detail/user_interface_config.hpp> #include <boost/mpl/bool.hpp> #include <boost/concept_check.hpp> #include <boost/bimap/detail/concept_tags.hpp> #include <boost/bimap/tags/support/value_type_of.hpp> #include <boost/bimap/detail/generate_index_binder.hpp> #include <boost/bimap/detail/generate_view_binder.hpp> #include <boost/bimap/detail/generate_relation_binder.hpp> #include <boost/bimap/views/unconstrained_map_view.hpp> #include <boost/bimap/views/unconstrained_set_view.hpp> namespace boost { namespace bimaps { /// \brief Set Type Specification /** This struct is used to specify a set specification. It is not a container, it is just a metaprogramming facility to express the type of a set. Generally, this specification will be used in other place to create a container. The first parameter is the type of the objects in the set. \code using namespace support; BOOST_STATIC_ASSERT( is_set_type_of< unconstrained_set_of<Type> >::value ) \endcode See also unconstrained_set_of_relation. **/ template < class KeyType > struct unconstrained_set_of : public ::boost::bimaps::detail::set_type_of_tag { /// User type, can be tagged typedef KeyType user_type; /// Type of the object that will be stored in the container typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::tags::support:: value_type_of<user_type>::type value_type; struct lazy_concept_checked { BOOST_CLASS_REQUIRE ( value_type, boost, AssignableConcept ); typedef unconstrained_set_of type; }; BOOST_BIMAP_GENERATE_INDEX_BINDER_FAKE BOOST_BIMAP_GENERATE_MAP_VIEW_BINDER( // binds to views::unconstrained_map_view ) BOOST_BIMAP_GENERATE_SET_VIEW_BINDER( // binds to views::unconstrained_set_view ) typedef mpl::bool_<true> mutable_key; }; /// \brief Set Of Relation Specification /** This struct is similar to unconstrained_set_of but it is bind logically to a relation. It is used in the bimap instantiation to specify the desired type of the main view. See also unconstrained_set_of, is_set_type_of_relation. **/ struct unconstrained_set_of_relation : public ::boost::bimaps::detail::set_type_of_relation_tag { BOOST_BIMAP_GENERATE_RELATION_BINDER_0CP( // binds to unconstrained_set_of ) typedef mpl::bool_<true> left_mutable_key; typedef mpl::bool_<true> right_mutable_key; }; #ifndef BOOST_BIMAP_DOXYGEN_WILL_NOT_PROCESS_THE_FOLLOWING_LINES namespace detail { template<class T> struct is_unconstrained_set_of : ::boost::mpl::false_ {}; template<class T> struct is_unconstrained_set_of< unconstrained_set_of<T> > : ::boost::mpl::true_ {}; } // namespace detail #endif // BOOST_BIMAP_DOXYGEN_WILL_NOT_PROCESS_THE_FOLLOWING_LINES } // namespace bimaps } // namespace boost /** \struct boost::bimaps::detail::is_unconstrained_set_of \brief Trait to check if a type is unconstrained_set_of. \code template< class T > struct is_unconstrained_set_of; \endcode **/ #endif // BOOST_BIMAP_UNCONSTRAINED_SET_OF_HPP