mirror of
https://github.com/boostorg/detail.git
synced 2025-12-19 13:32:31 +01:00
Compare commits
2 Commits
svn-branch
...
svn-branch
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6f13fd0acb | ||
|
|
2ceaa9133d |
@@ -1,368 +0,0 @@
|
|||||||
// (C) Copyright David Abrahams 2001. Permission to copy, use, modify,
|
|
||||||
// sell and distribute this software is granted provided this
|
|
||||||
// copyright notice appears in all copies. This software is provided
|
|
||||||
// "as is" without express or implied warranty, and with no claim as
|
|
||||||
// to its suitability for any purpose.
|
|
||||||
|
|
||||||
// Boost versions of
|
|
||||||
//
|
|
||||||
// std::iterator_traits<>::iterator_category
|
|
||||||
// std::iterator_traits<>::difference_type
|
|
||||||
// std::distance()
|
|
||||||
//
|
|
||||||
// ...for all compilers and iterators
|
|
||||||
//
|
|
||||||
// Additionally, if X is a pointer
|
|
||||||
// std::iterator_traits<X>::pointer
|
|
||||||
|
|
||||||
// Otherwise, if partial specialization is supported or X is not a pointer
|
|
||||||
// std::iterator_traits<X>::value_type
|
|
||||||
// std::iterator_traits<X>::pointer
|
|
||||||
// std::iterator_traits<X>::reference
|
|
||||||
//
|
|
||||||
// CAVEAT: When using the VC6 standard library, an iterator derived from
|
|
||||||
// std::iterator but not boost::iterator or from one supplied by the standard
|
|
||||||
// will always have pointer == const value_type* and reference == const
|
|
||||||
// value_type&, whether that's correct or not.
|
|
||||||
|
|
||||||
// See http://www.boost.org for most recent version including documentation.
|
|
||||||
|
|
||||||
// Revision History
|
|
||||||
// 19 Feb 2001 - Improved workarounds for stock MSVC6; use yes_type and
|
|
||||||
// no_type from type_traits.hpp; stopped trying to remove_cv
|
|
||||||
// before detecting is_pointer, in honor of the new type_traits
|
|
||||||
// semantics. (David Abrahams)
|
|
||||||
// 13 Feb 2001 - Make it work with nearly all standard-conforming iterators
|
|
||||||
// under raw VC6. The one category remaining which will fail is
|
|
||||||
// that of iterators derived from std::iterator but not
|
|
||||||
// boost::iterator and which redefine difference_type.
|
|
||||||
// 11 Feb 2001 - Clean away code which can never be used (David Abrahams)
|
|
||||||
// 09 Feb 2001 - Always have a definition for each traits member, even if it
|
|
||||||
// can't be properly deduced. These will be incomplete types in
|
|
||||||
// some cases (undefined<void>), but it helps suppress MSVC errors
|
|
||||||
// elsewhere (David Abrahams)
|
|
||||||
// 07 Feb 2001 - Support for more of the traits members where possible, making
|
|
||||||
// this useful as a replacement for std::iterator_traits<T> when
|
|
||||||
// used as a default template parameter.
|
|
||||||
// 06 Feb 2001 - Removed useless #includes of standard library headers
|
|
||||||
// (David Abrahams)
|
|
||||||
|
|
||||||
#ifndef ITERATOR_DWA122600_HPP_
|
|
||||||
# define ITERATOR_DWA122600_HPP_
|
|
||||||
|
|
||||||
# include <boost/config.hpp>
|
|
||||||
# include <boost/type_traits.hpp>
|
|
||||||
# include <boost/iterator.hpp>
|
|
||||||
# include <iterator>
|
|
||||||
# include <cstddef>
|
|
||||||
|
|
||||||
# if defined(BOOST_MSVC) && !defined(__SGI_STL_PORT)
|
|
||||||
# include <xtree>
|
|
||||||
# include <deque>
|
|
||||||
# include <list>
|
|
||||||
# endif
|
|
||||||
|
|
||||||
|
|
||||||
// STLPort 4.0 and betas have a bug when debugging is enabled and there is no
|
|
||||||
// partial specialization: instead of an iterator_category typedef, the standard
|
|
||||||
// container iterators have _Iterator_category.
|
|
||||||
//
|
|
||||||
// Also, whether debugging is enabled or not, there is a broken specialization
|
|
||||||
// of std::iterator<output_iterator_tag,void,void,void,void> which has no
|
|
||||||
// typedefs but iterator_category.
|
|
||||||
# if defined(__SGI_STL_PORT) && (__SGI_STL_PORT <= 0x410) && !defined(__STL_CLASS_PARTIAL_SPECIALIZATION)
|
|
||||||
|
|
||||||
# ifdef __STL_DEBUG
|
|
||||||
# define BOOST_BAD_CONTAINER_ITERATOR_CATEGORY_TYPEDEF
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# define BOOST_BAD_OUTPUT_ITERATOR_SPECIALIZATION
|
|
||||||
|
|
||||||
# endif // STLPort <= 4.1b4 && no partial specialization
|
|
||||||
|
|
||||||
namespace boost { namespace detail {
|
|
||||||
# if !defined(BOOST_NO_STD_ITERATOR_TRAITS) && !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
|
|
||||||
using std::iterator_traits;
|
|
||||||
using std::distance;
|
|
||||||
# else
|
|
||||||
|
|
||||||
// Workarounds for less-capable implementations
|
|
||||||
template <bool is_ptr> struct iterator_traits_select;
|
|
||||||
|
|
||||||
template <class T> struct undefined;
|
|
||||||
template <> struct iterator_traits_select<true>
|
|
||||||
{
|
|
||||||
template <class Ptr>
|
|
||||||
struct traits
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t difference_type;
|
|
||||||
typedef std::random_access_iterator_tag iterator_category;
|
|
||||||
typedef Ptr pointer;
|
|
||||||
#ifdef BOOST_MSVC
|
|
||||||
// Keeps MSVC happy under certain circumstances. It seems class template default
|
|
||||||
// arguments are partly instantiated even when not used when the class template
|
|
||||||
// is the return type of a function template.
|
|
||||||
typedef undefined<void> value_type;
|
|
||||||
typedef undefined<void> reference;
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
# ifdef BOOST_BAD_CONTAINER_ITERATOR_CATEGORY_TYPEDEF
|
|
||||||
no_type bad_category_helper(...);
|
|
||||||
template <class C, class T> yes_type bad_category_helper(std::_DBG_iter<C,T>*);
|
|
||||||
|
|
||||||
template <bool has_bad_category_typedef> struct bad_category_select;
|
|
||||||
template <>
|
|
||||||
struct bad_category_select<true>
|
|
||||||
{
|
|
||||||
template <class Iterator>
|
|
||||||
struct category { typedef typename Iterator::_Iterator_category type; };
|
|
||||||
};
|
|
||||||
template <>
|
|
||||||
struct bad_category_select<false>
|
|
||||||
{
|
|
||||||
template <class Iterator>
|
|
||||||
struct category { typedef typename Iterator::iterator_category type; };
|
|
||||||
};
|
|
||||||
|
|
||||||
template <class Iterator>
|
|
||||||
struct iterator_category_select
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
static Iterator p;
|
|
||||||
enum { has_bad_category
|
|
||||||
= sizeof(bad_category_helper(&p)) == sizeof(yes_type) };
|
|
||||||
typedef bad_category_select<has_bad_category> category_select;
|
|
||||||
public:
|
|
||||||
typedef typename category_select::template category<Iterator>::type type;
|
|
||||||
};
|
|
||||||
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# ifdef BOOST_BAD_OUTPUT_ITERATOR_SPECIALIZATION
|
|
||||||
template <bool is_bad_output_iterator> struct bad_output_iterator_select;
|
|
||||||
template <>
|
|
||||||
struct bad_output_iterator_select<true>
|
|
||||||
{
|
|
||||||
template <class Iterator>
|
|
||||||
struct non_category_traits {
|
|
||||||
typedef void value_type;
|
|
||||||
typedef void difference_type;
|
|
||||||
typedef void pointer;
|
|
||||||
typedef void reference;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
template <>
|
|
||||||
struct bad_output_iterator_select<false>
|
|
||||||
{
|
|
||||||
template <class Iterator>
|
|
||||||
struct non_category_traits {
|
|
||||||
typedef typename Iterator::value_type value_type;
|
|
||||||
typedef typename Iterator::difference_type difference_type;
|
|
||||||
typedef typename Iterator::pointer pointer;
|
|
||||||
typedef typename Iterator::reference reference;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if defined(BOOST_MSVC) && !defined(__SGI_STL_PORT)
|
|
||||||
|
|
||||||
// We'll sort iterator types into one of these classifications, from which we
|
|
||||||
// can determine the difference_type, pointer, reference, and value_type
|
|
||||||
enum {
|
|
||||||
not_msvc_stdlib_iterator,
|
|
||||||
msvc_stdlib_const_iterator,
|
|
||||||
msvc_stdlib_mutable_iterator,
|
|
||||||
msvc_stdlib_ostream_iterator
|
|
||||||
};
|
|
||||||
|
|
||||||
template <unsigned> struct msvc_traits_select;
|
|
||||||
|
|
||||||
template <> struct msvc_traits_select<not_msvc_stdlib_iterator>
|
|
||||||
{
|
|
||||||
template <class Iterator>
|
|
||||||
struct traits_ // calling this "traits" will confuse VC.
|
|
||||||
{
|
|
||||||
typedef typename Iterator::difference_type difference_type;
|
|
||||||
typedef typename Iterator::value_type value_type;
|
|
||||||
typedef typename Iterator::pointer pointer;
|
|
||||||
typedef typename Iterator::reference reference;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template <> struct msvc_traits_select<msvc_stdlib_mutable_iterator>
|
|
||||||
{
|
|
||||||
template <class Iterator>
|
|
||||||
struct traits_
|
|
||||||
{
|
|
||||||
typedef typename Iterator::distance_type difference_type;
|
|
||||||
typedef typename Iterator::value_type value_type;
|
|
||||||
typedef value_type* pointer;
|
|
||||||
typedef value_type& reference;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template <> struct msvc_traits_select<msvc_stdlib_const_iterator>
|
|
||||||
{
|
|
||||||
template <class Iterator>
|
|
||||||
struct traits_
|
|
||||||
{
|
|
||||||
typedef typename Iterator::distance_type difference_type;
|
|
||||||
typedef typename Iterator::value_type value_type;
|
|
||||||
typedef const value_type* pointer;
|
|
||||||
typedef const value_type& reference;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template <> struct msvc_traits_select<msvc_stdlib_ostream_iterator>
|
|
||||||
{
|
|
||||||
template <class Iterator>
|
|
||||||
struct traits_
|
|
||||||
{
|
|
||||||
typedef typename Iterator::distance_type difference_type;
|
|
||||||
typedef typename Iterator::value_type value_type;
|
|
||||||
typedef void pointer;
|
|
||||||
typedef void reference;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
// These functions allow us to detect which classification a given iterator type
|
|
||||||
// falls into.
|
|
||||||
|
|
||||||
// Is the iterator derived from std::iterator?
|
|
||||||
template <class V, class D, class C>
|
|
||||||
yes_type is_std_iterator_helper(const volatile std::iterator<V,D,C>*);
|
|
||||||
no_type is_std_iterator_helper(...);
|
|
||||||
|
|
||||||
// Is the iterator derived from boost::iterator?
|
|
||||||
template <class C, class T, class D, class P, class R>
|
|
||||||
yes_type is_boost_iterator_helper(const volatile boost::iterator<C,T,D,P,R>*);
|
|
||||||
no_type is_boost_iterator_helper(...);
|
|
||||||
|
|
||||||
// Is the iterator one of the known mutable container iterators?
|
|
||||||
template<class K, class Ty, class Kfn, class Pr, class A>
|
|
||||||
yes_type is_mutable_iterator_helper(const volatile std::_Tree<K,Ty,Kfn,Pr,A>::iterator*);
|
|
||||||
template<class Ty, class A>
|
|
||||||
yes_type is_mutable_iterator_helper(const volatile std::list<Ty,A>::iterator*);
|
|
||||||
template<class Ty, class A>
|
|
||||||
yes_type is_mutable_iterator_helper(const volatile std::deque<Ty,A>::iterator*);
|
|
||||||
no_type is_mutable_iterator_helper(...);
|
|
||||||
|
|
||||||
// Is the iterator an ostream_iterator?
|
|
||||||
template<class T, class CharT, class Traits>
|
|
||||||
yes_type is_ostream_iterator_helper(const volatile std::ostream_iterator<T,CharT,Traits>*);
|
|
||||||
no_type is_ostream_iterator_helper(...);
|
|
||||||
|
|
||||||
template <class T>
|
|
||||||
struct msvc_iterator_classification {
|
|
||||||
enum {
|
|
||||||
value = (sizeof(is_ostream_iterator_helper((T*)0)) == sizeof(yes_type))
|
|
||||||
? msvc_stdlib_ostream_iterator
|
|
||||||
: (sizeof(is_mutable_iterator_helper((T*)0)) == sizeof(yes_type))
|
|
||||||
? msvc_stdlib_mutable_iterator
|
|
||||||
: (sizeof(is_std_iterator_helper((T*)0)) == sizeof(yes_type)
|
|
||||||
&& sizeof(is_boost_iterator_helper((T*)0)) == sizeof(no_type))
|
|
||||||
? msvc_stdlib_const_iterator
|
|
||||||
: not_msvc_stdlib_iterator
|
|
||||||
};
|
|
||||||
};
|
|
||||||
# endif
|
|
||||||
|
|
||||||
template <> struct iterator_traits_select<false>
|
|
||||||
{
|
|
||||||
template <class Iterator>
|
|
||||||
struct traits
|
|
||||||
{
|
|
||||||
# if defined(BOOST_MSVC) && !defined(__SGI_STL_PORT)
|
|
||||||
typedef msvc_traits_select<(
|
|
||||||
msvc_iterator_classification<Iterator>::value
|
|
||||||
)>::template traits_<Iterator> inner_traits;
|
|
||||||
|
|
||||||
typedef typename inner_traits::difference_type difference_type;
|
|
||||||
typedef typename inner_traits::value_type value_type;
|
|
||||||
typedef typename inner_traits::pointer pointer;
|
|
||||||
typedef typename inner_traits::reference reference;
|
|
||||||
# elif !defined(BOOST_BAD_OUTPUT_ITERATOR_SPECIALIZATION)
|
|
||||||
typedef typename Iterator::difference_type difference_type;
|
|
||||||
typedef typename Iterator::value_type value_type;
|
|
||||||
typedef typename Iterator::difference_type difference_type;
|
|
||||||
typedef typename Iterator::pointer pointer;
|
|
||||||
typedef typename Iterator::reference reference;
|
|
||||||
# else
|
|
||||||
typedef bad_output_iterator_select<
|
|
||||||
is_convertible<const volatile Iterator*,
|
|
||||||
const volatile std::iterator<std::output_iterator_tag,void,void,void,void>*
|
|
||||||
>::value> non_category_traits_select;
|
|
||||||
typedef non_category_traits_select::template non_category_traits<Iterator> non_category_traits;
|
|
||||||
public:
|
|
||||||
typedef typename non_category_traits::value_type value_type;
|
|
||||||
typedef typename non_category_traits::difference_type difference_type;
|
|
||||||
typedef typename non_category_traits::pointer pointer;
|
|
||||||
typedef typename non_category_traits::reference reference;
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if !defined(BOOST_BAD_CONTAINER_ITERATOR_CATEGORY_TYPEDEF)
|
|
||||||
typedef typename Iterator::iterator_category iterator_category;
|
|
||||||
# else
|
|
||||||
typedef typename iterator_category_select<Iterator>::type iterator_category;
|
|
||||||
# endif
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template <class Iterator>
|
|
||||||
struct iterator_traits
|
|
||||||
: iterator_traits_select<is_pointer<Iterator>::value>::template traits<Iterator>
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
typedef typename iterator_traits_select<
|
|
||||||
is_pointer<remove_cv<Iterator>::type>::value>::template traits<Iterator> traits;
|
|
||||||
public:
|
|
||||||
// Why do I need to define these typedefs? It keeps MSVC happy somehow.
|
|
||||||
// Why don't I need to define the other typedefs? Who knows?!?
|
|
||||||
typedef typename traits::difference_type difference_type;
|
|
||||||
typedef typename traits::iterator_category iterator_category;
|
|
||||||
};
|
|
||||||
|
|
||||||
template <class Category>
|
|
||||||
struct distance_select {
|
|
||||||
template <class Iterator>
|
|
||||||
static typename ::boost::detail::iterator_traits<Iterator>::difference_type
|
|
||||||
distance(Iterator i1, const Iterator i2)
|
|
||||||
{
|
|
||||||
typename ::boost::detail::iterator_traits<Iterator>::difference_type result = 0;
|
|
||||||
while (i1 != i2)
|
|
||||||
{
|
|
||||||
++i1;
|
|
||||||
++result;
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template <>
|
|
||||||
struct distance_select<std::random_access_iterator_tag> {
|
|
||||||
template <class Iterator>
|
|
||||||
static typename ::boost::detail::iterator_traits<Iterator>::difference_type
|
|
||||||
distance(const Iterator i1, const Iterator i2)
|
|
||||||
{
|
|
||||||
return i2 - i1;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template <class Iterator>
|
|
||||||
inline typename ::boost::detail::iterator_traits<Iterator>::difference_type
|
|
||||||
distance(const Iterator& first, const Iterator& last)
|
|
||||||
{
|
|
||||||
typedef typename ::boost::detail::iterator_traits<Iterator>::iterator_category iterator_category;
|
|
||||||
return distance_select<iterator_category>::distance(first, last);
|
|
||||||
}
|
|
||||||
# endif // workarounds
|
|
||||||
|
|
||||||
}}
|
|
||||||
|
|
||||||
# undef BOOST_BAD_CONTAINER_ITERATOR_CATEGORY_TYPEDEF
|
|
||||||
# undef BOOST_BAD_OUTPUT_ITERATOR_SPECIALIZATION
|
|
||||||
|
|
||||||
#endif // ITERATOR_DWA122600_HPP_
|
|
||||||
@@ -1,200 +0,0 @@
|
|||||||
// (C) Copyright David Abrahams 2001. Permission to copy, use, modify,
|
|
||||||
// sell and distribute this software is granted provided this
|
|
||||||
// copyright notice appears in all copies. This software is provided
|
|
||||||
// "as is" without express or implied warranty, and with no claim as
|
|
||||||
// to its suitability for any purpose.
|
|
||||||
//
|
|
||||||
// Template class is_signed and its documentation is:
|
|
||||||
// (C) Copyright Howard Hinnant 2001. Permission to copy, use, modify,
|
|
||||||
// sell and distribute this software is granted provided this
|
|
||||||
// copyright notice appears in all copies. This software is provided
|
|
||||||
// "as is" without express or implied warranty, and with no claim as
|
|
||||||
// to its suitability for any purpose.
|
|
||||||
//
|
|
||||||
// Template class numeric_traits<Number> --
|
|
||||||
//
|
|
||||||
// Supplies:
|
|
||||||
//
|
|
||||||
// typedef difference_type -- a type used to represent the difference
|
|
||||||
// between any two values of Number.
|
|
||||||
//
|
|
||||||
// Support:
|
|
||||||
// 1. Not all specializations are supplied
|
|
||||||
//
|
|
||||||
// 2. Use of specializations that are not supplied will cause a
|
|
||||||
// compile-time error
|
|
||||||
//
|
|
||||||
// 3. Users are free to specialize numeric_traits for any type.
|
|
||||||
//
|
|
||||||
// 4. Right now, specializations are only supplied for integer types.
|
|
||||||
//
|
|
||||||
// 5. On implementations which do not supply compile-time constants in
|
|
||||||
// std::numeric_limits<>, only specializations for built-in integer types
|
|
||||||
// are supplied.
|
|
||||||
//
|
|
||||||
// 6. Handling of numbers whose range of representation is at least as
|
|
||||||
// great as boost::intmax_t can cause some differences to be
|
|
||||||
// unrepresentable in difference_type:
|
|
||||||
//
|
|
||||||
// Number difference_type
|
|
||||||
// ------ ---------------
|
|
||||||
// signed Number
|
|
||||||
// unsigned intmax_t
|
|
||||||
//
|
|
||||||
// template <class Number> typename numeric_traits<Number>::difference_type
|
|
||||||
// numeric_distance(Number x, Number y)
|
|
||||||
// computes (y - x), attempting to avoid overflows.
|
|
||||||
//
|
|
||||||
|
|
||||||
// See http://www.boost.org for most recent version including documentation.
|
|
||||||
|
|
||||||
// Revision History
|
|
||||||
// 11 Feb 2001 - Use BOOST_STATIC_CONSTANT (David Abrahams)
|
|
||||||
// 11 Feb 2001 - Rolled back ineffective Borland-specific code
|
|
||||||
// (David Abrahams)
|
|
||||||
// 10 Feb 2001 - Rolled in supposed Borland fixes from John Maddock, but
|
|
||||||
// not seeing any improvement yet (David Abrahams)
|
|
||||||
// 06 Feb 2001 - Factored if_true out into boost/detail/select_type.hpp
|
|
||||||
// (David Abrahams)
|
|
||||||
// 23 Jan 2001 - Fixed logic of difference_type selection, which was
|
|
||||||
// completely wack. In the process, added digit_traits<>
|
|
||||||
// to compute the number of digits in intmax_t even when
|
|
||||||
// not supplied by numeric_limits<>. (David Abrahams)
|
|
||||||
// 21 Jan 2001 - Created (David Abrahams)
|
|
||||||
|
|
||||||
#ifndef BOOST_NUMERIC_TRAITS_HPP_DWA20001901
|
|
||||||
# define BOOST_NUMERIC_TRAITS_HPP_DWA20001901
|
|
||||||
|
|
||||||
# include <boost/config.hpp>
|
|
||||||
# include <boost/cstdint.hpp>
|
|
||||||
# include <boost/static_assert.hpp>
|
|
||||||
# include <boost/type_traits.hpp>
|
|
||||||
# include <boost/detail/select_type.hpp>
|
|
||||||
# ifndef BOOST_NO_LIMITS
|
|
||||||
# include <limits>
|
|
||||||
# endif
|
|
||||||
|
|
||||||
namespace boost { namespace detail {
|
|
||||||
|
|
||||||
// Template class is_signed -- determine whether a numeric type is signed
|
|
||||||
// Requires that T is constructable from the literals -1 and 0. Compile-time
|
|
||||||
// error results if that requirement is not met (and thus signedness is not
|
|
||||||
// likely to have meaning for that type).
|
|
||||||
template <class Number>
|
|
||||||
struct is_signed
|
|
||||||
{
|
|
||||||
#if defined(BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS) || defined(BOOST_MSVC)
|
|
||||||
BOOST_STATIC_CONSTANT(bool, value = (Number(-1) < Number(0)));
|
|
||||||
#else
|
|
||||||
BOOST_STATIC_CONSTANT(bool, value = std::numeric_limits<Number>::is_signed);
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
|
|
||||||
# ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
|
|
||||||
// digit_traits - compute the number of digits in a built-in integer
|
|
||||||
// type. Needed for implementations on which numeric_limits is not specialized
|
|
||||||
// for intmax_t (e.g. VC6).
|
|
||||||
template <bool is_specialized> struct digit_traits_select;
|
|
||||||
|
|
||||||
// numeric_limits is specialized; just select that version of digits
|
|
||||||
template <> struct digit_traits_select<true>
|
|
||||||
{
|
|
||||||
template <class T> struct traits
|
|
||||||
{
|
|
||||||
BOOST_STATIC_CONSTANT(int, digits = std::numeric_limits<T>::digits);
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
// numeric_limits is not specialized; compute digits from sizeof(T)
|
|
||||||
template <> struct digit_traits_select<false>
|
|
||||||
{
|
|
||||||
template <class T> struct traits
|
|
||||||
{
|
|
||||||
BOOST_STATIC_CONSTANT(int, digits = (
|
|
||||||
sizeof(T) * std::numeric_limits<unsigned char>::digits
|
|
||||||
- (is_signed<T>::value ? 1 : 0))
|
|
||||||
);
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
// here's the "usable" template
|
|
||||||
template <class T> struct digit_traits
|
|
||||||
{
|
|
||||||
typedef digit_traits_select<
|
|
||||||
::std::numeric_limits<T>::is_specialized> selector;
|
|
||||||
typedef typename selector::template traits<T> traits;
|
|
||||||
BOOST_STATIC_CONSTANT(int, digits = traits::digits);
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Template class integer_traits<Integer> -- traits of various integer types
|
|
||||||
// This should probably be rolled into boost::integer_traits one day, but I
|
|
||||||
// need it to work without <limits>
|
|
||||||
template <class Integer>
|
|
||||||
struct integer_traits
|
|
||||||
{
|
|
||||||
# ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
|
|
||||||
private:
|
|
||||||
typedef Integer integer_type;
|
|
||||||
typedef std::numeric_limits<integer_type> x;
|
|
||||||
# ifdef BOOST_MSVC
|
|
||||||
// for some reason, MSVC asserts when it shouldn't unless we make these
|
|
||||||
// local definitions
|
|
||||||
BOOST_STATIC_CONSTANT(bool, is_integer = x::is_integer);
|
|
||||||
BOOST_STATIC_CONSTANT(bool, is_specialized = x::is_specialized);
|
|
||||||
|
|
||||||
BOOST_STATIC_ASSERT(is_integer);
|
|
||||||
BOOST_STATIC_ASSERT(is_specialized);
|
|
||||||
# endif
|
|
||||||
public:
|
|
||||||
typedef typename
|
|
||||||
if_true<(int(x::is_signed)
|
|
||||||
&& (!int(x::is_bounded)
|
|
||||||
// digits is the number of no-sign bits
|
|
||||||
|| (int(x::digits) + 1 >= digit_traits<boost::intmax_t>::digits)))>::template then<
|
|
||||||
Integer,
|
|
||||||
|
|
||||||
typename if_true<(int(x::digits) + 1 < digit_traits<signed int>::digits)>::template then<
|
|
||||||
signed int,
|
|
||||||
|
|
||||||
typename if_true<(int(x::digits) + 1 < digit_traits<signed long>::digits)>::template then<
|
|
||||||
signed long,
|
|
||||||
|
|
||||||
// else
|
|
||||||
intmax_t
|
|
||||||
>::type>::type>::type difference_type;
|
|
||||||
#else
|
|
||||||
BOOST_STATIC_ASSERT(boost::is_integral<Integer>::value);
|
|
||||||
|
|
||||||
typedef typename
|
|
||||||
if_true<(sizeof(Integer) >= sizeof(intmax_t))>::template then<
|
|
||||||
|
|
||||||
typename if_true<(is_signed<Integer>::value)>::template then<
|
|
||||||
Integer,
|
|
||||||
intmax_t
|
|
||||||
>::type,
|
|
||||||
|
|
||||||
typename if_true<(sizeof(Integer) < sizeof(std::ptrdiff_t))>::template then<
|
|
||||||
std::ptrdiff_t,
|
|
||||||
intmax_t
|
|
||||||
>::type
|
|
||||||
>::type difference_type;
|
|
||||||
# endif
|
|
||||||
};
|
|
||||||
|
|
||||||
// Right now, only supports integers, but should be expanded.
|
|
||||||
template <class Number>
|
|
||||||
struct numeric_traits
|
|
||||||
{
|
|
||||||
typedef typename integer_traits<Number>::difference_type difference_type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template <class Number>
|
|
||||||
typename numeric_traits<Number>::difference_type numeric_distance(Number x, Number y)
|
|
||||||
{
|
|
||||||
typedef typename numeric_traits<Number>::difference_type difference_type;
|
|
||||||
return difference_type(y) - difference_type(x);
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
|
|
||||||
#endif // BOOST_NUMERIC_TRAITS_HPP_DWA20001901
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
// (C) Copyright David Abrahams 2001. Permission to copy, use, modify,
|
|
||||||
// sell and distribute this software is granted provided this
|
|
||||||
// copyright notice appears in all copies. This software is provided
|
|
||||||
// "as is" without express or implied warranty, and with no claim as
|
|
||||||
// to its suitability for any purpose.
|
|
||||||
//
|
|
||||||
// See http://www.boost.org for most recent version including documentation.
|
|
||||||
|
|
||||||
// Revision History
|
|
||||||
// 09 Feb 01 Applied John Maddock's Borland patch Moving <true>
|
|
||||||
// specialization to unspecialized template (David Abrahams)
|
|
||||||
// 06 Feb 01 Created (David Abrahams)
|
|
||||||
|
|
||||||
#ifndef SELECT_TYPE_DWA20010206_HPP
|
|
||||||
# define SELECT_TYPE_DWA20010206_HPP
|
|
||||||
|
|
||||||
namespace boost { namespace detail {
|
|
||||||
|
|
||||||
// Template class if_true -- select among 2 types based on a bool constant expression
|
|
||||||
// Usage:
|
|
||||||
// typename if_true<(bool_const_expression)>::template then<true_type, false_type>::type
|
|
||||||
template <bool> struct if_true
|
|
||||||
{
|
|
||||||
template <class T, class F>
|
|
||||||
struct then { typedef T type; };
|
|
||||||
};
|
|
||||||
|
|
||||||
template <>
|
|
||||||
struct if_true<false>
|
|
||||||
{
|
|
||||||
template <class T, class F>
|
|
||||||
struct then { typedef F type; };
|
|
||||||
};
|
|
||||||
}}
|
|
||||||
#endif // SELECT_TYPE_DWA20010206_HPP
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
// -*- C++ -*- forwarding header.
|
|
||||||
|
|
||||||
#ifndef BOOST_CSTDDEF_HPP
|
|
||||||
#define BOOST_CSTDDEF_HPP
|
|
||||||
|
|
||||||
#if defined(__sgi) && !defined(__GNUC__)
|
|
||||||
# include <stddef.h>
|
|
||||||
#else
|
|
||||||
# include <cstddef>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
@@ -1,101 +0,0 @@
|
|||||||
// (C) Copyright Jeremy Siek 2000. Permission to copy, use, modify, sell and
|
|
||||||
// distribute this software is granted provided this copyright notice appears
|
|
||||||
// in all copies. This software is provided "as is" without express or implied
|
|
||||||
// warranty, and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// The ct_if implementation that avoids partial specialization is
|
|
||||||
// based on the IF class by Ulrich W. Eisenecker and Krzysztof
|
|
||||||
// Czarnecki.
|
|
||||||
|
|
||||||
#ifndef BOOST_CT_IF_HPP
|
|
||||||
#define BOOST_CT_IF_HPP
|
|
||||||
|
|
||||||
#include <boost/config.hpp>
|
|
||||||
|
|
||||||
/*
|
|
||||||
There is a bug in the Borland compiler with regards to using
|
|
||||||
integers to specialize templates. This made it hard to use ct_if in
|
|
||||||
the graph library. Changing from 'ct_if' to 'ct_if_t' fixed the
|
|
||||||
problem.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace boost {
|
|
||||||
|
|
||||||
struct ct_if_error { };
|
|
||||||
|
|
||||||
struct true_type { enum { value = true }; };
|
|
||||||
struct false_type { enum { value = false }; };
|
|
||||||
|
|
||||||
template <class A, class B>
|
|
||||||
struct ct_and { typedef false_type type; };
|
|
||||||
template <> struct ct_and<true_type,true_type> { typedef true_type type; };
|
|
||||||
|
|
||||||
template <class A> struct ct_not { typedef ct_if_error type; };
|
|
||||||
template <> struct ct_not<true_type> { typedef false_type type; };
|
|
||||||
template <> struct ct_not<false_type> { typedef true_type type; };
|
|
||||||
|
|
||||||
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
|
||||||
|
|
||||||
template <int cond, class A, class B>
|
|
||||||
struct ct_if { typedef ct_if_error type; };
|
|
||||||
template <class A, class B>
|
|
||||||
struct ct_if<1, A, B> { typedef A type; };
|
|
||||||
template <class A, class B>
|
|
||||||
struct ct_if<0, A, B> { typedef B type; };
|
|
||||||
|
|
||||||
template <class cond, class A, class B>
|
|
||||||
struct ct_if_t { typedef ct_if_error type; };
|
|
||||||
template <class A, class B>
|
|
||||||
struct ct_if_t<true_type, A, B> { typedef A type; };
|
|
||||||
template <class A, class B>
|
|
||||||
struct ct_if_t<false_type, A, B> { typedef B type; };
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
namespace detail {
|
|
||||||
|
|
||||||
template <int condition, class A, class B> struct IF;
|
|
||||||
template <int condition> struct SlectSelector;
|
|
||||||
struct SelectFirstType;
|
|
||||||
struct SelectSecondType;
|
|
||||||
|
|
||||||
struct SelectFirstType {
|
|
||||||
template<class A, class B>
|
|
||||||
struct Template { typedef A type; };
|
|
||||||
};
|
|
||||||
|
|
||||||
struct SelectSecondType {
|
|
||||||
template<class A, class B>
|
|
||||||
struct Template { typedef B type; };
|
|
||||||
};
|
|
||||||
|
|
||||||
template<int condition>
|
|
||||||
struct SlectSelector {
|
|
||||||
typedef SelectFirstType type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template <>
|
|
||||||
struct SlectSelector<0> {
|
|
||||||
typedef SelectSecondType type;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace detail
|
|
||||||
|
|
||||||
template<int condition, class A, class B>
|
|
||||||
struct ct_if
|
|
||||||
{
|
|
||||||
typedef typename detail::SlectSelector<condition>::type Selector;
|
|
||||||
typedef typename Selector::template Template<A, B>::type type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template <class cond, class A, class B>
|
|
||||||
struct ct_if_t {
|
|
||||||
typedef typename ct_if<cond::value, A, B>::type type;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
} // namespace boost
|
|
||||||
|
|
||||||
#endif // BOOST_CT_IF_HPP
|
|
||||||
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
// (C) Copyright David Abrahams 2001. Permission to copy, use,
|
|
||||||
// modify, sell and distribute this software is granted provided this
|
|
||||||
// copyright notice appears in all copies. This software is provided
|
|
||||||
// "as is" without express or implied warranty, and with no claim as
|
|
||||||
// to its suitability for any purpose.
|
|
||||||
|
|
||||||
#ifndef BOOST_TYPE_DWA20010120_HPP
|
|
||||||
# define BOOST_TYPE_DWA20010120_HPP
|
|
||||||
|
|
||||||
namespace boost {
|
|
||||||
|
|
||||||
// Just a simple "type envelope". Useful in various contexts, mostly to work
|
|
||||||
// around some MSVC deficiencies.
|
|
||||||
template <class T>
|
|
||||||
struct type {};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // BOOST_TYPE_DWA20010120_HPP
|
|
||||||
Reference in New Issue
Block a user