123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847 |
- // Boost.Assign library
- //
- // Copyright Thorsten Ottosen 2003-2004. Use, modification and
- // distribution is subject to 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)
- //
- // For more information, see http://www.boost.org/libs/assign/
- //
- #ifndef BOOST_ASSIGN_LIST_OF_HPP
- #define BOOST_ASSIGN_LIST_OF_HPP
- #if defined(_MSC_VER)
- # pragma once
- #endif
- #include <boost/assign/assignment_exception.hpp>
- #include <boost/range/iterator_range.hpp>
- #include <boost/config.hpp>
- #include <boost/tuple/tuple.hpp>
- #include <boost/type_traits/remove_const.hpp>
- #include <boost/type_traits/remove_reference.hpp>
- #include <boost/type_traits/is_reference.hpp>
- #include <boost/static_assert.hpp>
- #include <boost/throw_exception.hpp>
- #include <boost/type_traits/conditional.hpp>
- #include <boost/type_traits/detail/yes_no_type.hpp>
- #include <boost/type_traits/decay.hpp>
- #include <boost/type_traits/is_array.hpp>
- #include <boost/utility/enable_if.hpp>
- #include <boost/utility/declval.hpp>
- #include <boost/move/utility.hpp>
- #include <deque>
- #include <cstddef>
- #include <utility>
- #ifndef BOOST_NO_CXX11_HDR_ARRAY
- #include <array>
- #endif
- #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
- #include <initializer_list>
- #endif
- // some gcc < 4.7 do not support all of the variadic features required for boost::assign
- #if !(defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) || BOOST_WORKAROUND(BOOST_GCC, < 40700) \
- || defined(BOOST_NO_CXX11_RVALUE_REFERENCES))
- # define BOOST_ASSIGN_USE_VARIADIC_TEMPLATES
- #endif
- #if !defined(BOOST_ASSIGN_USE_VARIADIC_TEMPLATES)
- #include <boost/preprocessor/repetition/enum_binary_params.hpp>
- #include <boost/preprocessor/repetition/enum_params.hpp>
- #include <boost/preprocessor/iteration/local.hpp>
- #endif
- #if BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x564))
- // BCB requires full type definition for is_array<> to work correctly.
- #include <boost/array.hpp>
- #endif
- namespace boost
- {
- // this here is necessary to avoid compiler error in <boost/array.hpp>
- #if !BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x564))
- template< class T, std::size_t sz >
- class array;
- #endif
- namespace assign_detail
- {
- /////////////////////////////////////////////////////////////////////////
- // Part 0: common conversion code
- /////////////////////////////////////////////////////////////////////////
- template< class T >
- struct assign_decay
- {
- //
- // Add constness to array parameters
- // to support string literals properly
- //
- typedef BOOST_DEDUCED_TYPENAME ::boost::conditional<
- ::boost::is_array<T>::value,
- ::boost::decay<const T>,
- ::boost::decay<T> >::type::type type;
- };
- template< class T, std::size_t sz >
- type_traits::yes_type assign_is_array( const array<T,sz>* );
- #ifndef BOOST_NO_CXX11_HDR_ARRAY
- template< class T, std::size_t sz >
- type_traits::yes_type assign_is_array( const std::array<T, sz>* );
- #endif
- type_traits::no_type assign_is_array( ... );
- template< class T, class U >
- type_traits::yes_type assign_is_pair( const std::pair<T,U>* );
- type_traits::no_type assign_is_pair( ... );
- struct array_type_tag
- {
- #if BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x564))
- private:
- char dummy_; // BCB would by default use 8 bytes
- #endif
- };
- struct adapter_type_tag
- {
- #if BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x564))
- private:
- char dummy_; // BCB would by default use 8 bytes
- #endif
- };
- struct pair_type_tag
- {
- #if BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x564))
- private:
- char dummy_; // BCB would by default use 8 bytes
- #endif
- };
- struct default_type_tag
- {
- #if BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x564))
- private:
- char dummy_; // BCB would by default use 8 bytes
- #endif
- };
- #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
- template< class C >
- struct is_initializer_list : boost::false_type {};
- template< class E >
- struct is_initializer_list< std::initializer_list<E> > : boost::true_type {};
- #endif
- template< class DerivedTAssign, class Iterator >
- class converter
- {
- public: // Range operations
- typedef Iterator iterator;
- typedef Iterator const_iterator;
- iterator begin() const
- {
- return static_cast<const DerivedTAssign*>(this)->begin();
- }
- iterator end() const
- {
- return static_cast<const DerivedTAssign*>(this)->end();
- }
- public:
- template< class Container >
- Container convert_to_container() const
- {
- static Container* c = 0;
- BOOST_STATIC_CONSTANT( bool, is_array_flag = sizeof( assign_detail::assign_is_array( c ) )
- == sizeof( type_traits::yes_type ) );
- typedef BOOST_DEDUCED_TYPENAME ::boost::conditional< is_array_flag,
- array_type_tag,
- default_type_tag >::type tag_type;
- return convert<Container>( c, tag_type() );
- }
- private:
- template< class Container >
- Container convert( const Container*, default_type_tag ) const
- {
- #if BOOST_WORKAROUND(BOOST_DINKUMWARE_STDLIB, == 1)
- // old Dinkumware doesn't support iterator type as template
- Container result;
- iterator it = begin(),
- e = end();
- while( it != e )
- {
- result.insert( result.end(), *it );
- ++it;
- }
- return result;
- #else
- return Container( begin(), end() );
- #endif
- }
- template< class Array >
- Array convert( const Array*, array_type_tag ) const
- {
- typedef BOOST_DEDUCED_TYPENAME Array::value_type value_type;
- #if BOOST_WORKAROUND(BOOST_INTEL, <= 910 ) || BOOST_WORKAROUND(__SUNPRO_CC, <= 0x5100 )
- BOOST_DEDUCED_TYPENAME remove_const<Array>::type ar;
- #else
- Array ar;
- #endif
- const std::size_t sz = ar.size();
- if( sz < static_cast<const DerivedTAssign*>(this)->size() )
- BOOST_THROW_EXCEPTION( assign::assignment_exception( "array initialized with too many elements" ) );
- std::size_t n = 0;
- iterator i = begin(),
- e = end();
- for( ; i != e; ++i, ++n )
- ar[n] = *i;
- for( ; n < sz; ++n )
- ar[n] = value_type();
- return ar;
- }
- template< class Adapter >
- Adapter convert_to_adapter( const Adapter* = 0 ) const
- {
- Adapter a;
- iterator i = begin(),
- e = end();
- for( ; i != e; ++i )
- a.push( *i );
- return a;
- }
- private:
- struct adapter_converter;
- friend struct adapter_converter;
- struct adapter_converter
- {
- const converter& gl;
- adapter_converter( const converter& this_ ) : gl( this_ )
- {}
- adapter_converter( const adapter_converter& r )
- : gl( r.gl )
- { }
- template< class Adapter >
- operator Adapter() const
- {
- return gl.convert_to_adapter<Adapter>();
- }
- };
- public:
- template< class Container >
- Container to_container( Container& c ) const
- {
- return convert( &c, default_type_tag() );
- }
- adapter_converter to_adapter() const
- {
- return adapter_converter( *this );
- }
- template< class Adapter >
- Adapter to_adapter( Adapter& a ) const
- {
- return this->convert_to_adapter( &a );
- }
- template< class Array >
- Array to_array( Array& a ) const
- {
- return convert( &a, array_type_tag() );
- }
- };
- template< class T, class I, class Range >
- inline bool operator==( const converter<T,I>& l, const Range& r )
- {
- return ::boost::iterator_range_detail::equal( l, r );
- }
- template< class T, class I, class Range >
- inline bool operator==( const Range& l, const converter<T,I>& r )
- {
- return r == l;
- }
- template< class T, class I, class Range >
- inline bool operator!=( const converter<T,I>& l, const Range& r )
- {
- return !( l == r );
- }
- template< class T, class I, class Range >
- inline bool operator!=( const Range& l, const converter<T,I>& r )
- {
- return !( l == r );
- }
- template< class T, class I, class Range >
- inline bool operator<( const converter<T,I>& l, const Range& r )
- {
- return ::boost::iterator_range_detail::less_than( l, r );
- }
- template< class T, class I, class Range >
- inline bool operator<( const Range& l, const converter<T,I>& r )
- {
- return ::boost::iterator_range_detail::less_than( l, r );
- }
- template< class T, class I, class Range >
- inline bool operator>( const converter<T,I>& l, const Range& r )
- {
- return r < l;
- }
- template< class T, class I, class Range >
- inline bool operator>( const Range& l, const converter<T,I>& r )
- {
- return r < l;
- }
- template< class T, class I, class Range >
- inline bool operator<=( const converter<T,I>& l, const Range& r )
- {
- return !( l > r );
- }
- template< class T, class I, class Range >
- inline bool operator<=( const Range& l, const converter<T,I>& r )
- {
- return !( l > r );
- }
- template< class T, class I, class Range >
- inline bool operator>=( const converter<T,I>& l, const Range& r )
- {
- return !( l < r );
- }
- template< class T, class I, class Range >
- inline bool operator>=( const Range& l, const converter<T,I>& r )
- {
- return !( l < r );
- }
- template< class T, class I, class Elem, class Traits >
- inline std::basic_ostream<Elem,Traits>&
- operator<<( std::basic_ostream<Elem, Traits>& Os,
- const converter<T,I>& r )
- {
- return Os << ::boost::make_iterator_range( r.begin(), r.end() );
- }
- /////////////////////////////////////////////////////////////////////////
- // Part 1: flexible, but inefficient interface
- /////////////////////////////////////////////////////////////////////////
- template< class T >
- class generic_list :
- public converter< generic_list< BOOST_DEDUCED_TYPENAME assign_decay<T>::type >,
- BOOST_DEDUCED_TYPENAME std::deque<BOOST_DEDUCED_TYPENAME
- assign_decay<T>::type>::iterator >
- {
- typedef BOOST_DEDUCED_TYPENAME assign_decay<T>::type Ty;
- typedef std::deque<Ty> impl_type;
- mutable impl_type values_;
- public:
- typedef BOOST_DEDUCED_TYPENAME impl_type::iterator iterator;
- typedef iterator const_iterator;
- typedef BOOST_DEDUCED_TYPENAME impl_type::value_type value_type;
- typedef BOOST_DEDUCED_TYPENAME impl_type::size_type size_type;
- typedef BOOST_DEDUCED_TYPENAME impl_type::difference_type difference_type;
- public:
- iterator begin() const { return values_.begin(); }
- iterator end() const { return values_.end(); }
- bool empty() const { return values_.empty(); }
- size_type size() const { return values_.size(); }
- private:
- #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
- void push_back( value_type r ) { values_.push_back( r ); }
- #else
- void push_back( const value_type& r ) { values_.push_back( r ); }
- void push_back( value_type&& r ) { values_.push_back( boost::move( r ) ); }
- #endif
- public:
- generic_list& operator,( const Ty& u )
- {
- this->push_back( u );
- return *this;
- }
- #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
- generic_list& operator,( Ty&& u )
- {
- this->push_back( boost::move(u) );
- return *this;
- }
- #endif
- generic_list& operator()( const Ty& u )
- {
- this->push_back( u );
- return *this;
- }
- #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
- generic_list& operator()(Ty&& u)
- {
- this->push_back( boost::move(u) );
- return *this;
- }
- #endif
- generic_list& operator()()
- {
- this->push_back( Ty() );
- return *this;
- }
- #if !defined(BOOST_ASSIGN_USE_VARIADIC_TEMPLATES)
- #ifndef BOOST_ASSIGN_MAX_PARAMS // use user's value
- #define BOOST_ASSIGN_MAX_PARAMS 5
- #endif
- #define BOOST_ASSIGN_MAX_PARAMETERS (BOOST_ASSIGN_MAX_PARAMS - 1)
- #define BOOST_ASSIGN_PARAMS1(n) BOOST_PP_ENUM_PARAMS(n, class U)
- #define BOOST_ASSIGN_PARAMS2(n) BOOST_PP_ENUM_BINARY_PARAMS(n, U, const& u)
- #define BOOST_ASSIGN_PARAMS3(n) BOOST_PP_ENUM_PARAMS(n, u)
- #define BOOST_ASSIGN_PARAMS4(n) BOOST_PP_ENUM_PARAMS(n, U)
- #define BOOST_ASSIGN_PARAMS2_NO_REF(n) BOOST_PP_ENUM_BINARY_PARAMS(n, U, u)
- #define BOOST_PP_LOCAL_LIMITS (1, BOOST_ASSIGN_MAX_PARAMETERS)
- #define BOOST_PP_LOCAL_MACRO(n) \
- template< class U, BOOST_ASSIGN_PARAMS1(n) > \
- generic_list& operator()(U const& u, BOOST_ASSIGN_PARAMS2(n) ) \
- { \
- this->push_back( Ty(u, BOOST_ASSIGN_PARAMS3(n))); \
- return *this; \
- } \
- /**/
- #include BOOST_PP_LOCAL_ITERATE()
- #else
- template< class U0, class U1, class... Us >
- generic_list& operator()(U0&& u0, U1&& u1, Us&&... us)
- {
- this->push_back(Ty(boost::forward<U0>(u0), boost::forward<U1>(u1), boost::forward<Us>(us)...));
- return *this;
- }
- #endif
- template< class U >
- generic_list& repeat( std::size_t sz, U u )
- {
- std::size_t i = 0;
- while( i++ != sz )
- this->push_back( u );
- return *this;
- }
- template< class Nullary_function >
- generic_list& repeat_fun( std::size_t sz, Nullary_function fun )
- {
- std::size_t i = 0;
- while( i++ != sz )
- this->push_back( fun() );
- return *this;
- }
- template< class SinglePassIterator >
- generic_list& range( SinglePassIterator first,
- SinglePassIterator last )
- {
- for( ; first != last; ++first )
- this->push_back( *first );
- return *this;
- }
- template< class SinglePassRange >
- generic_list& range( const SinglePassRange& r )
- {
- return range( boost::begin(r), boost::end(r) );
- }
- #if !defined(BOOST_NO_CXX11_DECLTYPE_N3276) && !defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS)
- template< class Container,
- class = decltype(Container(
- boost::declval<BOOST_DEDUCED_TYPENAME std::deque<BOOST_DEDUCED_TYPENAME assign_decay<T>::type>::iterator>(),
- boost::declval<BOOST_DEDUCED_TYPENAME std::deque<BOOST_DEDUCED_TYPENAME assign_decay<T>::type>::iterator>()
- ))
- >
- operator Container() const
- {
- return this-> BOOST_NESTED_TEMPLATE convert_to_container<Container>();
- }
- template< class Container,
- class = typename boost::enable_if< boost::is_same< boost::type_traits::yes_type, decltype(assign_is_array((Container*)0))> >::type,
- class = void
- >
- operator Container() const
- {
- return this-> BOOST_NESTED_TEMPLATE convert_to_container<Container>();
- }
- #elif !defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS)
- template< class Container
- # if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
- , class = typename boost::disable_if< is_initializer_list<Container> >::type
- # endif
- , class = typename Container::iterator
- >
- operator Container() const
- {
- return this-> BOOST_NESTED_TEMPLATE convert_to_container<Container>();
- }
- #else
- template< class Container >
- operator Container() const
- {
- return this-> BOOST_NESTED_TEMPLATE convert_to_container<Container>();
- }
- #endif
- };
- /////////////////////////////////////////////////////////////////////////
- // Part 2: efficient, but inconvenient interface
- /////////////////////////////////////////////////////////////////////////
- template< class T >
- struct assign_reference
- {
- assign_reference() : ref_(0)
- { /* intentionally empty */ }
- assign_reference( T& r ) : ref_(&r)
- { }
- void operator=( T& r )
- {
- ref_ = &r;
- }
- operator T&() const
- {
- return *ref_;
- }
- void swap( assign_reference& r )
- {
- std::swap( *ref_, *r.ref_ );
- }
- T& get_ref() const
- {
- return *ref_;
- }
- private:
- T* ref_;
- };
- template< class T >
- inline bool operator<( const assign_reference<T>& l,
- const assign_reference<T>& r )
- {
- return l.get_ref() < r.get_ref();
- }
- template< class T >
- inline bool operator>( const assign_reference<T>& l,
- const assign_reference<T>& r )
- {
- return l.get_ref() > r.get_ref();
- }
- template< class T >
- inline void swap( assign_reference<T>& l,
- assign_reference<T>& r )
- {
- l.swap( r );
- }
- template< class T, int N >
- struct static_generic_list :
- public converter< static_generic_list<T,N>, assign_reference<T>* >
- {
- private:
- typedef T internal_value_type;
- public:
- typedef assign_reference<internal_value_type> value_type;
- typedef value_type* iterator;
- typedef value_type* const_iterator;
- typedef std::size_t size_type;
- typedef std::ptrdiff_t difference_type;
- static_generic_list( T& r ) :
- current_(1)
- {
- refs_[0] = r;
- }
- static_generic_list& operator()( T& r )
- {
- insert( r );
- return *this;
- }
- iterator begin() const
- {
- return &refs_[0];
- }
- iterator end() const
- {
- return &refs_[current_];
- }
- size_type size() const
- {
- return static_cast<size_type>( current_ );
- }
- bool empty() const
- {
- return false;
- }
- template< class ForwardIterator >
- static_generic_list& range( ForwardIterator first,
- ForwardIterator last )
- {
- for( ; first != last; ++first )
- this->insert( *first );
- return *this;
- }
- template< class ForwardRange >
- static_generic_list& range( ForwardRange& r )
- {
- return range( boost::begin(r), boost::end(r) );
- }
- template< class ForwardRange >
- static_generic_list& range( const ForwardRange& r )
- {
- return range( boost::begin(r), boost::end(r) );
- }
- #if !defined(BOOST_NO_CXX11_DECLTYPE_N3276) && !defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS)
- template< class Container,
- class = decltype(Container(boost::declval<assign_reference<T>*>(), boost::declval<assign_reference<T>*>()))
- >
- operator Container() const
- {
- return this-> BOOST_NESTED_TEMPLATE convert_to_container<Container>();
- }
- template< class Container,
- class = typename boost::enable_if< boost::is_same< boost::type_traits::yes_type, decltype(assign_is_array((Container*)0))> >::type,
- class = void
- >
- operator Container() const
- {
- return this-> BOOST_NESTED_TEMPLATE convert_to_container<Container>();
- }
- #elif !defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS)
- template< class Container
- # if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
- , class = typename boost::disable_if< is_initializer_list<Container> >::type
- # endif
- , class = typename Container::iterator
- >
- operator Container() const
- {
- return this-> BOOST_NESTED_TEMPLATE convert_to_container<Container>();
- }
- #else
- template< class Container >
- operator Container() const
- {
- return this-> BOOST_NESTED_TEMPLATE convert_to_container<Container>();
- }
- #endif
- private:
- void insert( T& r )
- {
- refs_[current_] = r;
- ++current_;
- }
- static_generic_list();
- mutable assign_reference<internal_value_type> refs_[N];
- int current_;
- };
- } // namespace 'assign_detail'
- namespace assign
- {
- template< class T >
- inline assign_detail::generic_list<BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type>
- list_of()
- {
- assign_detail::generic_list<BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type> gl;
- gl();
- return gl;
- }
- #if !defined(BOOST_ASSIGN_USE_VARIADIC_TEMPLATES)
- template< class T >
- inline assign_detail::generic_list<T>
- list_of( const T& t )
- {
- return assign_detail::generic_list<T>()( t );
- }
- #else
- template< class T >
- inline assign_detail::generic_list<BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type>
- list_of(T&& t)
- {
- assign_detail::generic_list<BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type> gl;
- gl(boost::forward<T>(t));
- return gl;
- }
- #endif
- template< int N, class T >
- inline assign_detail::static_generic_list< BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type,N>
- ref_list_of( T& t )
- {
- return assign_detail::static_generic_list<BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type,N>( t );
- }
- template< int N, class T >
- inline assign_detail::static_generic_list<const BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type,N>
- cref_list_of( const T& t )
- {
- return assign_detail::static_generic_list<const BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type,N>( t );
- }
- #if !defined(BOOST_ASSIGN_USE_VARIADIC_TEMPLATES)
- #define BOOST_PP_LOCAL_LIMITS (1, BOOST_ASSIGN_MAX_PARAMETERS)
- #define BOOST_PP_LOCAL_MACRO(n) \
- template< class T, class U, BOOST_ASSIGN_PARAMS1(n) > \
- inline assign_detail::generic_list<T> \
- list_of(U const& u, BOOST_ASSIGN_PARAMS2(n) ) \
- { \
- return assign_detail::generic_list<T>()(u, BOOST_ASSIGN_PARAMS3(n)); \
- } \
- /**/
- #include BOOST_PP_LOCAL_ITERATE()
- #define BOOST_PP_LOCAL_LIMITS (1, BOOST_ASSIGN_MAX_PARAMETERS)
- #define BOOST_PP_LOCAL_MACRO(n) \
- template< class U, BOOST_ASSIGN_PARAMS1(n) > \
- inline assign_detail::generic_list< tuple<U, BOOST_ASSIGN_PARAMS4(n)> > \
- tuple_list_of(U u, BOOST_ASSIGN_PARAMS2_NO_REF(n) ) \
- { \
- return assign_detail::generic_list< tuple<U, BOOST_ASSIGN_PARAMS4(n)> >()( tuple<U,BOOST_ASSIGN_PARAMS4(n)>( u, BOOST_ASSIGN_PARAMS3(n) )); \
- } \
- /**/
- #include BOOST_PP_LOCAL_ITERATE()
- #else
- template< class T, class U, class... Us >
- inline assign_detail::generic_list<BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type>
- list_of(U&& u, Us&&... us)
- {
- assign_detail::generic_list<BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type> gl;
- gl(boost::forward<U>(u), boost::forward<Us>(us)...);
- return gl;
- }
- template< class U, class... Us >
- inline assign_detail::generic_list< tuple<U, Us...> >
- tuple_list_of(U u, Us... us)
- {
- assign_detail::generic_list< tuple<U, Us...> > gl;
- gl(tuple<U, Us...>(u, us...));
- return gl;
- }
- #endif
- template< class Key, class T >
- inline assign_detail::generic_list< std::pair
- <
- BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<Key>::type,
- BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type
- > >
- map_list_of( const Key& k, const T& t )
- {
- typedef BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<Key>::type k_type;
- typedef BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<T>::type t_type;
- return assign_detail::generic_list< std::pair<k_type,t_type> >()( k, t );
- }
- template< class F, class S >
- inline assign_detail::generic_list< std::pair
- <
- BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<F>::type,
- BOOST_DEDUCED_TYPENAME assign_detail::assign_decay<S>::type
- > >
- pair_list_of( const F& f, const S& s )
- {
- return map_list_of( f, s );
- }
- } // namespace 'assign'
- } // namespace 'boost'
- #if !defined(BOOST_ASSIGN_USE_VARIADIC_TEMPLATES)
- #undef BOOST_ASSIGN_PARAMS1
- #undef BOOST_ASSIGN_PARAMS2
- #undef BOOST_ASSIGN_PARAMS3
- #undef BOOST_ASSIGN_PARAMS4
- #undef BOOST_ASSIGN_PARAMS2_NO_REF
- #undef BOOST_ASSIGN_MAX_PARAMETERS
- #endif
- #endif
|