x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
multiset_of.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\bimap\multiset_of.hpp
旋转
特效
属性
历史版本
// 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 multiset_of.hpp /// \brief Include support for multiset constrains for the bimap container #ifndef BOOST_BIMAP_MULTISET_OF_HPP #define BOOST_BIMAP_MULTISET_OF_HPP #if defined(_MSC_VER) && (_MSC_VER>=1200) #pragma once #endif #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
namespace boost { namespace bimaps { /// \brief Set Type Specification /** This struct is used to specify a multiset 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. It has the same syntax that an std::set instantiation, except that the allocator cannot be specified. The rationale behind this difference is that the allocator is not part of the set type specification, rather it is a container configuration parameter. The first parameter is the type of the objects in the multiset, and the second one is a Functor that compares them. Bimap binding metafunctions can be used with this class in the following way: \code using namespace support; BOOST_STATIC_ASSERT( is_set_type_of< multiset_of
>::value ) BOOST_STATIC_ASSERT ( is_same < compute_index_type < multiset_of
, KeyExtractor, Tag >::type , ordered_nonunique< tag
, KeyExtractor, KeyCompare > >::value ) typedef bimap < multiset_of
, RightKeyType > bimap_with_left_type_as_multiset; BOOST_STATIC_ASSERT ( is_same < compute_map_view_type < member_at::left, bimap_with_left_type_as_multiset >::type, multimap_view< member_at::left, bimap_with_left_type_as_multiset > >::value ) \endcode See also multiset_of_relation. **/ template < class KeyType, class KeyCompare = std::less< BOOST_DEDUCED_TYPENAME ::boost::bimaps::tags::support::value_type_of
::type > > struct multiset_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 multiset typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::tags::support:: value_type_of
::type value_type; /// Functor that compare two keys typedef KeyCompare key_compare; struct lazy_concept_checked { BOOST_CLASS_REQUIRE ( value_type, boost, AssignableConcept ); BOOST_CLASS_REQUIRE4( key_compare, bool, value_type, value_type, boost, BinaryFunctionConcept ); typedef multiset_of type; }; BOOST_BIMAP_GENERATE_INDEX_BINDER_1CP( // binds to multi_index::ordered_non_unique, // with key_compare ) BOOST_BIMAP_GENERATE_MAP_VIEW_BINDER( // binds to views::multimap_view ) BOOST_BIMAP_GENERATE_SET_VIEW_BINDER( // binds to views::multiset_view ) typedef mpl::bool_
mutable_key; }; /// \brief Set Of Relation Specification /** This struct is similar to multiset_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. This struct implements internally a metafunction named bind_to that manages the quite complicated task of finding the right type of the set for the relation. \code template
struct bind_to { typedef -unspecified- type; }; \endcode See also multiset_of, is_set_type_of_relation. **/ template< class KeyCompare = std::less< _relation > > struct multiset_of_relation : public ::boost::bimaps::detail::set_type_of_relation_tag { /// Functor that compare two keys typedef KeyCompare key_compare; BOOST_BIMAP_GENERATE_RELATION_BINDER_1CP( // binds to multiset_of, // with key_compare ) typedef mpl::bool_
left_mutable_key; typedef mpl::bool_
right_mutable_key; }; } // namespace bimaps } // namespace boost #endif // BOOST_BIMAP_MULTISET_OF_HPP
multiset_of.hpp
网页地址
文件地址
上一页
3/8
下一页
下载
( 5 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.