x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
cons.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\fusion\container\list\cons.hpp
旋转
特效
属性
历史版本
/*============================================================================= Copyright (c) 2005 Joel de Guzman Copyright (c) 2005 Eric Niebler 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) ==============================================================================*/ #if !defined(FUSION_CONS_07172005_0843) #define FUSION_CONS_07172005_0843 #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
namespace boost { namespace fusion { struct void_; struct cons_tag; struct forward_traversal_tag; struct fusion_sequence_tag; struct nil : sequence_base
{ typedef mpl::int_<0> size; typedef cons_tag fusion_tag; typedef fusion_sequence_tag tag; // this gets picked up by MPL typedef mpl::false_ is_view; typedef forward_traversal_tag category; typedef void_ car_type; typedef void_ cdr_type; nil() {} template
nil(Iterator const& iter, mpl::true_ /*this_is_an_iterator*/) {} template
void assign_from_iter(Iterator const& iter) { } }; template
struct cons : sequence_base
> { typedef mpl::int_
size; typedef cons_tag fusion_tag; typedef fusion_sequence_tag tag; // this gets picked up by MPL typedef mpl::false_ is_view; typedef forward_traversal_tag category; typedef Car car_type; typedef Cdr cdr_type; cons() : car(), cdr() {} explicit cons(typename detail::call_param
::type car) : car(car), cdr() {} cons( typename detail::call_param
::type car , typename detail::call_param
::type cdr) : car(car), cdr(cdr) {} template
cons(cons
const& rhs) : car(rhs.car), cdr(rhs.cdr) {} cons(cons const& rhs) : car(rhs.car), cdr(rhs.cdr) {} template
cons( Sequence const& seq , typename disable_if< mpl::or_< is_convertible
// use copy ctor instead , is_convertible
// use copy to car instead > >::type* dummy = 0 ) : car(*fusion::begin(seq)) , cdr(fusion::next(fusion::begin(seq)), mpl::true_()) {} template
cons(Iterator const& iter, mpl::true_ /*this_is_an_iterator*/) : car(*iter) , cdr(fusion::next(iter), mpl::true_()) {} template
cons& operator=(cons
const& rhs) { car = rhs.car; cdr = rhs.cdr; return *this; } cons& operator=(cons const& rhs) { car = rhs.car; cdr = rhs.cdr; return *this; } template
typename disable_if
, cons&>::type operator=(Sequence const& seq) { typedef typename result_of::begin
::type Iterator; Iterator iter = fusion::begin(seq); this->assign_from_iter(iter); return *this; } template
void assign_from_iter(Iterator const& iter) { car = *iter; cdr.assign_from_iter(fusion::next(iter)); } car_type car; cdr_type cdr; }; }} #endif
cons.hpp
网页地址
文件地址
上一页 1/6
下一页
下载
( 4 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.