📄 insert_impl.hpp
字号:
#ifndef BOOST_MPL_SET_AUX_INSERT_IMPL_HPP_INCLUDED
#define BOOST_MPL_SET_AUX_INSERT_IMPL_HPP_INCLUDED
// + file: boost/mpl/aux_/insert_impl.hpp
// + last modified: 05/may/03
// Copyright (c) 2002-03
// David Abrahams, Aleksey Gurtovoy
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted without fee,
// provided that the above copyright notice appears in all copies and
// that both the copyright notice and this permission notice appear in
// supporting documentation. No representations are made about the
// suitability of this software for any purpose. It is provided "as is"
// without express or implied warranty.
//
// See http://www.boost.org/libs/mpl for documentation.
#include "boost/mpl/set/aux_/has_key_impl.hpp"
#include "boost/mpl/set/aux_/item.hpp"
#include "boost/mpl/set/aux_/tag.hpp"
#include "boost/mpl/insert_fwd.hpp"
#include "boost/mpl/identity.hpp"
#include "boost/mpl/base.hpp"
#include "boost/mpl/apply_if.hpp"
#include "boost/type_traits/is_same.hpp"
namespace boost {
namespace mpl {
template<>
struct insert_traits< aux::set_tag >
{
template< typename Set, typename T, typename unused_ > struct algorithm
: apply_if<
has_key_impl<aux::set_tag>::apply<Set,T>
, apply_if<
is_same< T,typename Set::last_masked >
, base<Set>
, identity<Set>
>
, identity< s_item<T,Set> >
>
/*
: eval< if_<
has_key<Set,T>
, if_< is_same< T,typename Set::last_masked >, base< arg<Set> >, Set >
, Set
> >
*/
{
};
};
}}
#endif // BOOST_MPL_SET_AUX_INSERT_IMPL_HPP_INCLUDED
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -