x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
filter_iterator.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\iterator\filter_iterator.hpp
旋转
特效
属性
历史版本
// (C) Copyright David Abrahams 2002. // (C) Copyright Jeremy Siek 2002. // (C) Copyright Thomas Witt 2002. // 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_FILTER_ITERATOR_23022003THW_HPP #define BOOST_FILTER_ITERATOR_23022003THW_HPP #include
#include
#include
#include
#include
namespace boost { template
class filter_iterator; namespace detail { template
struct filter_iterator_base { typedef iterator_adaptor< filter_iterator
, Iterator , use_default , typename mpl::if_< is_convertible< typename iterator_traversal
::type , random_access_traversal_tag > , bidirectional_traversal_tag , use_default >::type > type; }; } template
class filter_iterator : public detail::filter_iterator_base
::type { typedef typename detail::filter_iterator_base< Predicate, Iterator >::type super_t; friend class iterator_core_access; public: filter_iterator() { } filter_iterator(Predicate f, Iterator x, Iterator end_ = Iterator()) : super_t(x), m_predicate(f), m_end(end_) { satisfy_predicate(); } filter_iterator(Iterator x, Iterator end_ = Iterator()) : super_t(x), m_predicate(), m_end(end_) { // Pro8 is a little too aggressive about instantiating the // body of this function. #if !BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003)) // Don't allow use of this constructor if Predicate is a // function pointer type, since it will be 0. BOOST_STATIC_ASSERT(is_class
::value); #endif satisfy_predicate(); } template
filter_iterator( filter_iterator
const& t , typename enable_if_convertible
::type* = 0 ) : super_t(t.base()), m_predicate(t.predicate()), m_end(t.end()) {} Predicate predicate() const { return m_predicate; } Iterator end() const { return m_end; } private: void increment() { ++(this->base_reference()); satisfy_predicate(); } void decrement() { while(!this->m_predicate(*--(this->base_reference()))){}; } void satisfy_predicate() { while (this->base() != this->m_end && !this->m_predicate(*this->base())) ++(this->base_reference()); } // Probably should be the initial base class so it can be // optimized away via EBO if it is an empty class. Predicate m_predicate; Iterator m_end; }; template
filter_iterator
make_filter_iterator(Predicate f, Iterator x, Iterator end = Iterator()) { return filter_iterator
(f,x,end); } template
filter_iterator
make_filter_iterator( typename iterators::enable_if< is_class
, Iterator >::type x , Iterator end = Iterator() #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) , Predicate* = 0 #endif ) { return filter_iterator
(x,end); } } // namespace boost #endif // BOOST_FILTER_ITERATOR_23022003THW_HPP
filter_iterator.hpp
网页地址
文件地址
上一页
2/17
下一页
下载
( 3 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.