x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
cons.hpp - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\fusion\container\list\cons.hpp
Girar
Efecto
Propiedad
Historial
/*============================================================================= 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
Dirección de la página
Dirección del archivo
Anterior 1/6
Siguiente
Descargar
( 4 KB )
Comments
Total ratings:
0
Average rating:
No clasificado
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.