os/ossrv/ossrv_pub/boost_apis/boost/operators.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
//  Boost operators.hpp header file  ----------------------------------------//
sl@0
     2
sl@0
     3
//  (C) Copyright David Abrahams, Jeremy Siek, Daryle Walker 1999-2001.
sl@0
     4
//  Distributed under the Boost Software License, Version 1.0. (See
sl@0
     5
//  accompanying file LICENSE_1_0.txt or copy at
sl@0
     6
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
     7
sl@0
     8
//  See http://www.boost.org/libs/utility/operators.htm for documentation.
sl@0
     9
sl@0
    10
//  Revision History
sl@0
    11
//  21 Oct 02 Modified implementation of operators to allow compilers with a
sl@0
    12
//            correct named return value optimization (NRVO) to produce optimal
sl@0
    13
//            code.  (Daniel Frey)
sl@0
    14
//  02 Dec 01 Bug fixed in random_access_iteratable.  (Helmut Zeisel)
sl@0
    15
//  28 Sep 01 Factored out iterator operator groups.  (Daryle Walker)
sl@0
    16
//  27 Aug 01 'left' form for non commutative operators added;
sl@0
    17
//            additional classes for groups of related operators added;
sl@0
    18
//            workaround for empty base class optimization
sl@0
    19
//            bug of GCC 3.0 (Helmut Zeisel)
sl@0
    20
//  25 Jun 01 output_iterator_helper changes: removed default template 
sl@0
    21
//            parameters, added support for self-proxying, additional 
sl@0
    22
//            documentation and tests (Aleksey Gurtovoy)
sl@0
    23
//  29 May 01 Added operator classes for << and >>.  Added input and output
sl@0
    24
//            iterator helper classes.  Added classes to connect equality and
sl@0
    25
//            relational operators.  Added classes for groups of related
sl@0
    26
//            operators.  Reimplemented example operator and iterator helper
sl@0
    27
//            classes in terms of the new groups.  (Daryle Walker, with help
sl@0
    28
//            from Alexy Gurtovoy)
sl@0
    29
//  11 Feb 01 Fixed bugs in the iterator helpers which prevented explicitly
sl@0
    30
//            supplied arguments from actually being used (Dave Abrahams)
sl@0
    31
//  04 Jul 00 Fixed NO_OPERATORS_IN_NAMESPACE bugs, major cleanup and
sl@0
    32
//            refactoring of compiler workarounds, additional documentation
sl@0
    33
//            (Alexy Gurtovoy and Mark Rodgers with some help and prompting from
sl@0
    34
//            Dave Abrahams) 
sl@0
    35
//  28 Jun 00 General cleanup and integration of bugfixes from Mark Rodgers and
sl@0
    36
//            Jeremy Siek (Dave Abrahams)
sl@0
    37
//  20 Jun 00 Changes to accommodate Borland C++Builder 4 and Borland C++ 5.5
sl@0
    38
//            (Mark Rodgers)
sl@0
    39
//  20 Jun 00 Minor fixes to the prior revision (Aleksey Gurtovoy)
sl@0
    40
//  10 Jun 00 Support for the base class chaining technique was added
sl@0
    41
//            (Aleksey Gurtovoy). See documentation and the comments below 
sl@0
    42
//            for the details. 
sl@0
    43
//  12 Dec 99 Initial version with iterator operators (Jeremy Siek)
sl@0
    44
//  18 Nov 99 Change name "divideable" to "dividable", remove unnecessary
sl@0
    45
//            specializations of dividable, subtractable, modable (Ed Brey) 
sl@0
    46
//  17 Nov 99 Add comments (Beman Dawes)
sl@0
    47
//            Remove unnecessary specialization of operators<> (Ed Brey)
sl@0
    48
//  15 Nov 99 Fix less_than_comparable<T,U> second operand type for first two
sl@0
    49
//            operators.(Beman Dawes)
sl@0
    50
//  12 Nov 99 Add operators templates (Ed Brey)
sl@0
    51
//  11 Nov 99 Add single template parameter version for compilers without
sl@0
    52
//            partial specialization (Beman Dawes)
sl@0
    53
//  10 Nov 99 Initial version
sl@0
    54
sl@0
    55
// 10 Jun 00:
sl@0
    56
// An additional optional template parameter was added to most of 
sl@0
    57
// operator templates to support the base class chaining technique (see 
sl@0
    58
// documentation for the details). Unfortunately, a straightforward
sl@0
    59
// implementation of this change would have broken compatibility with the
sl@0
    60
// previous version of the library by making it impossible to use the same
sl@0
    61
// template name (e.g. 'addable') for both the 1- and 2-argument versions of
sl@0
    62
// an operator template. This implementation solves the backward-compatibility
sl@0
    63
// issue at the cost of some simplicity.
sl@0
    64
//
sl@0
    65
// One of the complications is an existence of special auxiliary class template
sl@0
    66
// 'is_chained_base<>' (see 'detail' namespace below), which is used
sl@0
    67
// to determine whether its template parameter is a library's operator template
sl@0
    68
// or not. You have to specialize 'is_chained_base<>' for each new 
sl@0
    69
// operator template you add to the library.
sl@0
    70
//
sl@0
    71
// However, most of the non-trivial implementation details are hidden behind 
sl@0
    72
// several local macros defined below, and as soon as you understand them,
sl@0
    73
// you understand the whole library implementation. 
sl@0
    74
sl@0
    75
#ifndef BOOST_OPERATORS_HPP
sl@0
    76
#define BOOST_OPERATORS_HPP
sl@0
    77
sl@0
    78
#include <boost/config.hpp>
sl@0
    79
#include <boost/iterator.hpp>
sl@0
    80
#include <boost/detail/workaround.hpp>
sl@0
    81
sl@0
    82
#if defined(__sgi) && !defined(__GNUC__)
sl@0
    83
#   pragma set woff 1234
sl@0
    84
#endif
sl@0
    85
sl@0
    86
#if defined(BOOST_MSVC)
sl@0
    87
#   pragma warning( disable : 4284 ) // complaint about return type of 
sl@0
    88
#endif                               // operator-> not begin a UDT
sl@0
    89
sl@0
    90
namespace boost {
sl@0
    91
namespace detail {
sl@0
    92
sl@0
    93
// Helmut Zeisel, empty base class optimization bug with GCC 3.0.0
sl@0
    94
#if defined(__GNUC__) && __GNUC__==3 && __GNUC_MINOR__==0 && __GNU_PATCHLEVEL__==0
sl@0
    95
class empty_base {
sl@0
    96
  bool dummy; 
sl@0
    97
};
sl@0
    98
#else
sl@0
    99
class empty_base {};
sl@0
   100
#endif
sl@0
   101
sl@0
   102
} // namespace detail
sl@0
   103
} // namespace boost
sl@0
   104
sl@0
   105
// In this section we supply the xxxx1 and xxxx2 forms of the operator
sl@0
   106
// templates, which are explicitly targeted at the 1-type-argument and
sl@0
   107
// 2-type-argument operator forms, respectively. Some compilers get confused
sl@0
   108
// when inline friend functions are overloaded in namespaces other than the
sl@0
   109
// global namespace. When BOOST_NO_OPERATORS_IN_NAMESPACE is defined, all of
sl@0
   110
// these templates must go in the global namespace.
sl@0
   111
sl@0
   112
#ifndef BOOST_NO_OPERATORS_IN_NAMESPACE
sl@0
   113
namespace boost
sl@0
   114
{
sl@0
   115
#endif
sl@0
   116
sl@0
   117
//  Basic operator classes (contributed by Dave Abrahams) ------------------//
sl@0
   118
sl@0
   119
//  Note that friend functions defined in a class are implicitly inline.
sl@0
   120
//  See the C++ std, 11.4 [class.friend] paragraph 5
sl@0
   121
sl@0
   122
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   123
struct less_than_comparable2 : B
sl@0
   124
{
sl@0
   125
     friend bool operator<=(const T& x, const U& y) { return !(x > y); }
sl@0
   126
     friend bool operator>=(const T& x, const U& y) { return !(x < y); }
sl@0
   127
     friend bool operator>(const U& x, const T& y)  { return y < x; }
sl@0
   128
     friend bool operator<(const U& x, const T& y)  { return y > x; }
sl@0
   129
     friend bool operator<=(const U& x, const T& y) { return !(y < x); }
sl@0
   130
     friend bool operator>=(const U& x, const T& y) { return !(y > x); }
sl@0
   131
};
sl@0
   132
sl@0
   133
template <class T, class B = ::boost::detail::empty_base>
sl@0
   134
struct less_than_comparable1 : B
sl@0
   135
{
sl@0
   136
     friend bool operator>(const T& x, const T& y)  { return y < x; }
sl@0
   137
     friend bool operator<=(const T& x, const T& y) { return !(y < x); }
sl@0
   138
     friend bool operator>=(const T& x, const T& y) { return !(x < y); }
sl@0
   139
};
sl@0
   140
sl@0
   141
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   142
struct equality_comparable2 : B
sl@0
   143
{
sl@0
   144
     friend bool operator==(const U& y, const T& x) { return x == y; }
sl@0
   145
     friend bool operator!=(const U& y, const T& x) { return !(x == y); }
sl@0
   146
     friend bool operator!=(const T& y, const U& x) { return !(y == x); }
sl@0
   147
};
sl@0
   148
sl@0
   149
template <class T, class B = ::boost::detail::empty_base>
sl@0
   150
struct equality_comparable1 : B
sl@0
   151
{
sl@0
   152
     friend bool operator!=(const T& x, const T& y) { return !(x == y); }
sl@0
   153
};
sl@0
   154
sl@0
   155
// A macro which produces "name_2left" from "name".
sl@0
   156
#define BOOST_OPERATOR2_LEFT(name) name##2##_##left
sl@0
   157
sl@0
   158
//  NRVO-friendly implementation (contributed by Daniel Frey) ---------------//
sl@0
   159
sl@0
   160
#if defined(BOOST_HAS_NRVO) || defined(BOOST_FORCE_SYMMETRIC_OPERATORS)
sl@0
   161
sl@0
   162
// This is the optimal implementation for ISO/ANSI C++,
sl@0
   163
// but it requires the compiler to implement the NRVO.
sl@0
   164
// If the compiler has no NRVO, this is the best symmetric
sl@0
   165
// implementation available.
sl@0
   166
sl@0
   167
#define BOOST_BINARY_OPERATOR_COMMUTATIVE( NAME, OP )                         \
sl@0
   168
template <class T, class U, class B = ::boost::detail::empty_base>            \
sl@0
   169
struct NAME##2 : B                                                            \
sl@0
   170
{                                                                             \
sl@0
   171
  friend T operator OP( const T& lhs, const U& rhs )                          \
sl@0
   172
    { T nrv( lhs ); nrv OP##= rhs; return nrv; }                              \
sl@0
   173
  friend T operator OP( const U& lhs, const T& rhs )                          \
sl@0
   174
    { T nrv( rhs ); nrv OP##= lhs; return nrv; }                              \
sl@0
   175
};                                                                            \
sl@0
   176
                                                                              \
sl@0
   177
template <class T, class B = ::boost::detail::empty_base>                     \
sl@0
   178
struct NAME##1 : B                                                            \
sl@0
   179
{                                                                             \
sl@0
   180
  friend T operator OP( const T& lhs, const T& rhs )                          \
sl@0
   181
    { T nrv( lhs ); nrv OP##= rhs; return nrv; }                              \
sl@0
   182
};
sl@0
   183
sl@0
   184
#define BOOST_BINARY_OPERATOR_NON_COMMUTATIVE( NAME, OP )           \
sl@0
   185
template <class T, class U, class B = ::boost::detail::empty_base>  \
sl@0
   186
struct NAME##2 : B                                                  \
sl@0
   187
{                                                                   \
sl@0
   188
  friend T operator OP( const T& lhs, const U& rhs )                \
sl@0
   189
    { T nrv( lhs ); nrv OP##= rhs; return nrv; }                    \
sl@0
   190
};                                                                  \
sl@0
   191
                                                                    \
sl@0
   192
template <class T, class U, class B = ::boost::detail::empty_base>  \
sl@0
   193
struct BOOST_OPERATOR2_LEFT(NAME) : B                               \
sl@0
   194
{                                                                   \
sl@0
   195
  friend T operator OP( const U& lhs, const T& rhs )                \
sl@0
   196
    { T nrv( lhs ); nrv OP##= rhs; return nrv; }                    \
sl@0
   197
};                                                                  \
sl@0
   198
                                                                    \
sl@0
   199
template <class T, class B = ::boost::detail::empty_base>           \
sl@0
   200
struct NAME##1 : B                                                  \
sl@0
   201
{                                                                   \
sl@0
   202
  friend T operator OP( const T& lhs, const T& rhs )                \
sl@0
   203
    { T nrv( lhs ); nrv OP##= rhs; return nrv; }                    \
sl@0
   204
};
sl@0
   205
sl@0
   206
#else // defined(BOOST_HAS_NRVO) || defined(BOOST_FORCE_SYMMETRIC_OPERATORS)
sl@0
   207
sl@0
   208
// For compilers without NRVO the following code is optimal, but not
sl@0
   209
// symmetric!  Note that the implementation of
sl@0
   210
// BOOST_OPERATOR2_LEFT(NAME) only looks cool, but doesn't provide
sl@0
   211
// optimization opportunities to the compiler :)
sl@0
   212
sl@0
   213
#define BOOST_BINARY_OPERATOR_COMMUTATIVE( NAME, OP )                         \
sl@0
   214
template <class T, class U, class B = ::boost::detail::empty_base>            \
sl@0
   215
struct NAME##2 : B                                                            \
sl@0
   216
{                                                                             \
sl@0
   217
  friend T operator OP( T lhs, const U& rhs ) { return lhs OP##= rhs; }       \
sl@0
   218
  friend T operator OP( const U& lhs, T rhs ) { return rhs OP##= lhs; }       \
sl@0
   219
};                                                                            \
sl@0
   220
                                                                              \
sl@0
   221
template <class T, class B = ::boost::detail::empty_base>                     \
sl@0
   222
struct NAME##1 : B                                                            \
sl@0
   223
{                                                                             \
sl@0
   224
  friend T operator OP( T lhs, const T& rhs ) { return lhs OP##= rhs; }       \
sl@0
   225
};
sl@0
   226
sl@0
   227
#define BOOST_BINARY_OPERATOR_NON_COMMUTATIVE( NAME, OP )               \
sl@0
   228
template <class T, class U, class B = ::boost::detail::empty_base>      \
sl@0
   229
struct NAME##2 : B                                                      \
sl@0
   230
{                                                                       \
sl@0
   231
  friend T operator OP( T lhs, const U& rhs ) { return lhs OP##= rhs; } \
sl@0
   232
};                                                                      \
sl@0
   233
                                                                        \
sl@0
   234
template <class T, class U, class B = ::boost::detail::empty_base>      \
sl@0
   235
struct BOOST_OPERATOR2_LEFT(NAME) : B                                   \
sl@0
   236
{                                                                       \
sl@0
   237
  friend T operator OP( const U& lhs, const T& rhs )                    \
sl@0
   238
    { return T( lhs ) OP##= rhs; }                                      \
sl@0
   239
};                                                                      \
sl@0
   240
                                                                        \
sl@0
   241
template <class T, class B = ::boost::detail::empty_base>               \
sl@0
   242
struct NAME##1 : B                                                      \
sl@0
   243
{                                                                       \
sl@0
   244
  friend T operator OP( T lhs, const T& rhs ) { return lhs OP##= rhs; } \
sl@0
   245
};
sl@0
   246
sl@0
   247
#endif // defined(BOOST_HAS_NRVO) || defined(BOOST_FORCE_SYMMETRIC_OPERATORS)
sl@0
   248
sl@0
   249
BOOST_BINARY_OPERATOR_COMMUTATIVE( multipliable, * )
sl@0
   250
BOOST_BINARY_OPERATOR_COMMUTATIVE( addable, + )
sl@0
   251
BOOST_BINARY_OPERATOR_NON_COMMUTATIVE( subtractable, - )
sl@0
   252
BOOST_BINARY_OPERATOR_NON_COMMUTATIVE( dividable, / )
sl@0
   253
BOOST_BINARY_OPERATOR_NON_COMMUTATIVE( modable, % )
sl@0
   254
BOOST_BINARY_OPERATOR_COMMUTATIVE( xorable, ^ )
sl@0
   255
BOOST_BINARY_OPERATOR_COMMUTATIVE( andable, & )
sl@0
   256
BOOST_BINARY_OPERATOR_COMMUTATIVE( orable, | )
sl@0
   257
sl@0
   258
#undef BOOST_BINARY_OPERATOR_COMMUTATIVE
sl@0
   259
#undef BOOST_BINARY_OPERATOR_NON_COMMUTATIVE
sl@0
   260
#undef BOOST_OPERATOR2_LEFT
sl@0
   261
sl@0
   262
//  incrementable and decrementable contributed by Jeremy Siek
sl@0
   263
sl@0
   264
template <class T, class B = ::boost::detail::empty_base>
sl@0
   265
struct incrementable : B
sl@0
   266
{
sl@0
   267
  friend T operator++(T& x, int)
sl@0
   268
  {
sl@0
   269
    incrementable_type nrv(x);
sl@0
   270
    ++x;
sl@0
   271
    return nrv;
sl@0
   272
  }
sl@0
   273
private: // The use of this typedef works around a Borland bug
sl@0
   274
  typedef T incrementable_type;
sl@0
   275
};
sl@0
   276
sl@0
   277
template <class T, class B = ::boost::detail::empty_base>
sl@0
   278
struct decrementable : B
sl@0
   279
{
sl@0
   280
  friend T operator--(T& x, int)
sl@0
   281
  {
sl@0
   282
    decrementable_type nrv(x);
sl@0
   283
    --x;
sl@0
   284
    return nrv;
sl@0
   285
  }
sl@0
   286
private: // The use of this typedef works around a Borland bug
sl@0
   287
  typedef T decrementable_type;
sl@0
   288
};
sl@0
   289
sl@0
   290
//  Iterator operator classes (contributed by Jeremy Siek) ------------------//
sl@0
   291
sl@0
   292
template <class T, class P, class B = ::boost::detail::empty_base>
sl@0
   293
struct dereferenceable : B
sl@0
   294
{
sl@0
   295
  P operator->() const
sl@0
   296
  { 
sl@0
   297
    return &*static_cast<const T&>(*this); 
sl@0
   298
  }
sl@0
   299
};
sl@0
   300
sl@0
   301
template <class T, class I, class R, class B = ::boost::detail::empty_base>
sl@0
   302
struct indexable : B
sl@0
   303
{
sl@0
   304
  R operator[](I n) const
sl@0
   305
  {
sl@0
   306
    return *(static_cast<const T&>(*this) + n);
sl@0
   307
  }
sl@0
   308
};
sl@0
   309
sl@0
   310
//  More operator classes (contributed by Daryle Walker) --------------------//
sl@0
   311
//  (NRVO-friendly implementation contributed by Daniel Frey) ---------------//
sl@0
   312
sl@0
   313
#if defined(BOOST_HAS_NRVO) || defined(BOOST_FORCE_SYMMETRIC_OPERATORS)
sl@0
   314
sl@0
   315
#define BOOST_BINARY_OPERATOR( NAME, OP )                                     \
sl@0
   316
template <class T, class U, class B = ::boost::detail::empty_base>            \
sl@0
   317
struct NAME##2 : B                                                            \
sl@0
   318
{                                                                             \
sl@0
   319
  friend T operator OP( const T& lhs, const U& rhs )                          \
sl@0
   320
    { T nrv( lhs ); nrv OP##= rhs; return nrv; }                              \
sl@0
   321
};                                                                            \
sl@0
   322
                                                                              \
sl@0
   323
template <class T, class B = ::boost::detail::empty_base>                     \
sl@0
   324
struct NAME##1 : B                                                            \
sl@0
   325
{                                                                             \
sl@0
   326
  friend T operator OP( const T& lhs, const T& rhs )                          \
sl@0
   327
    { T nrv( lhs ); nrv OP##= rhs; return nrv; }                              \
sl@0
   328
};
sl@0
   329
sl@0
   330
#else // defined(BOOST_HAS_NRVO) || defined(BOOST_FORCE_SYMMETRIC_OPERATORS)
sl@0
   331
sl@0
   332
#define BOOST_BINARY_OPERATOR( NAME, OP )                                     \
sl@0
   333
template <class T, class U, class B = ::boost::detail::empty_base>            \
sl@0
   334
struct NAME##2 : B                                                            \
sl@0
   335
{                                                                             \
sl@0
   336
  friend T operator OP( T lhs, const U& rhs ) { return lhs OP##= rhs; }       \
sl@0
   337
};                                                                            \
sl@0
   338
                                                                              \
sl@0
   339
template <class T, class B = ::boost::detail::empty_base>                     \
sl@0
   340
struct NAME##1 : B                                                            \
sl@0
   341
{                                                                             \
sl@0
   342
  friend T operator OP( T lhs, const T& rhs ) { return lhs OP##= rhs; }       \
sl@0
   343
};
sl@0
   344
sl@0
   345
#endif // defined(BOOST_HAS_NRVO) || defined(BOOST_FORCE_SYMMETRIC_OPERATORS)
sl@0
   346
sl@0
   347
BOOST_BINARY_OPERATOR( left_shiftable, << )
sl@0
   348
BOOST_BINARY_OPERATOR( right_shiftable, >> )
sl@0
   349
sl@0
   350
#undef BOOST_BINARY_OPERATOR
sl@0
   351
sl@0
   352
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   353
struct equivalent2 : B
sl@0
   354
{
sl@0
   355
  friend bool operator==(const T& x, const U& y)
sl@0
   356
  {
sl@0
   357
    return !(x < y) && !(x > y);
sl@0
   358
  }
sl@0
   359
};
sl@0
   360
sl@0
   361
template <class T, class B = ::boost::detail::empty_base>
sl@0
   362
struct equivalent1 : B
sl@0
   363
{
sl@0
   364
  friend bool operator==(const T&x, const T&y)
sl@0
   365
  {
sl@0
   366
    return !(x < y) && !(y < x);
sl@0
   367
  }
sl@0
   368
};
sl@0
   369
sl@0
   370
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   371
struct partially_ordered2 : B
sl@0
   372
{
sl@0
   373
  friend bool operator<=(const T& x, const U& y)
sl@0
   374
    { return (x < y) || (x == y); }
sl@0
   375
  friend bool operator>=(const T& x, const U& y)
sl@0
   376
    { return (x > y) || (x == y); }
sl@0
   377
  friend bool operator>(const U& x, const T& y)
sl@0
   378
    { return y < x; }
sl@0
   379
  friend bool operator<(const U& x, const T& y)
sl@0
   380
    { return y > x; }
sl@0
   381
  friend bool operator<=(const U& x, const T& y)
sl@0
   382
    { return (y > x) || (y == x); }
sl@0
   383
  friend bool operator>=(const U& x, const T& y)
sl@0
   384
    { return (y < x) || (y == x); }
sl@0
   385
};
sl@0
   386
sl@0
   387
template <class T, class B = ::boost::detail::empty_base>
sl@0
   388
struct partially_ordered1 : B
sl@0
   389
{
sl@0
   390
  friend bool operator>(const T& x, const T& y)
sl@0
   391
    { return y < x; }
sl@0
   392
  friend bool operator<=(const T& x, const T& y)
sl@0
   393
    { return (x < y) || (x == y); }
sl@0
   394
  friend bool operator>=(const T& x, const T& y)
sl@0
   395
    { return (y < x) || (x == y); }
sl@0
   396
};
sl@0
   397
sl@0
   398
//  Combined operator classes (contributed by Daryle Walker) ----------------//
sl@0
   399
sl@0
   400
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   401
struct totally_ordered2
sl@0
   402
    : less_than_comparable2<T, U
sl@0
   403
    , equality_comparable2<T, U, B
sl@0
   404
      > > {};
sl@0
   405
sl@0
   406
template <class T, class B = ::boost::detail::empty_base>
sl@0
   407
struct totally_ordered1
sl@0
   408
    : less_than_comparable1<T
sl@0
   409
    , equality_comparable1<T, B
sl@0
   410
      > > {};
sl@0
   411
sl@0
   412
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   413
struct additive2
sl@0
   414
    : addable2<T, U
sl@0
   415
    , subtractable2<T, U, B
sl@0
   416
      > > {};
sl@0
   417
sl@0
   418
template <class T, class B = ::boost::detail::empty_base>
sl@0
   419
struct additive1
sl@0
   420
    : addable1<T
sl@0
   421
    , subtractable1<T, B
sl@0
   422
      > > {};
sl@0
   423
sl@0
   424
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   425
struct multiplicative2
sl@0
   426
    : multipliable2<T, U
sl@0
   427
    , dividable2<T, U, B
sl@0
   428
      > > {};
sl@0
   429
sl@0
   430
template <class T, class B = ::boost::detail::empty_base>
sl@0
   431
struct multiplicative1
sl@0
   432
    : multipliable1<T
sl@0
   433
    , dividable1<T, B
sl@0
   434
      > > {};
sl@0
   435
sl@0
   436
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   437
struct integer_multiplicative2
sl@0
   438
    : multiplicative2<T, U
sl@0
   439
    , modable2<T, U, B
sl@0
   440
      > > {};
sl@0
   441
sl@0
   442
template <class T, class B = ::boost::detail::empty_base>
sl@0
   443
struct integer_multiplicative1
sl@0
   444
    : multiplicative1<T
sl@0
   445
    , modable1<T, B
sl@0
   446
      > > {};
sl@0
   447
sl@0
   448
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   449
struct arithmetic2
sl@0
   450
    : additive2<T, U
sl@0
   451
    , multiplicative2<T, U, B
sl@0
   452
      > > {};
sl@0
   453
sl@0
   454
template <class T, class B = ::boost::detail::empty_base>
sl@0
   455
struct arithmetic1
sl@0
   456
    : additive1<T
sl@0
   457
    , multiplicative1<T, B
sl@0
   458
      > > {};
sl@0
   459
sl@0
   460
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   461
struct integer_arithmetic2
sl@0
   462
    : additive2<T, U
sl@0
   463
    , integer_multiplicative2<T, U, B
sl@0
   464
      > > {};
sl@0
   465
sl@0
   466
template <class T, class B = ::boost::detail::empty_base>
sl@0
   467
struct integer_arithmetic1
sl@0
   468
    : additive1<T
sl@0
   469
    , integer_multiplicative1<T, B
sl@0
   470
      > > {};
sl@0
   471
sl@0
   472
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   473
struct bitwise2
sl@0
   474
    : xorable2<T, U
sl@0
   475
    , andable2<T, U
sl@0
   476
    , orable2<T, U, B
sl@0
   477
      > > > {};
sl@0
   478
sl@0
   479
template <class T, class B = ::boost::detail::empty_base>
sl@0
   480
struct bitwise1
sl@0
   481
    : xorable1<T
sl@0
   482
    , andable1<T
sl@0
   483
    , orable1<T, B
sl@0
   484
      > > > {};
sl@0
   485
sl@0
   486
template <class T, class B = ::boost::detail::empty_base>
sl@0
   487
struct unit_steppable
sl@0
   488
    : incrementable<T
sl@0
   489
    , decrementable<T, B
sl@0
   490
      > > {};
sl@0
   491
sl@0
   492
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   493
struct shiftable2
sl@0
   494
    : left_shiftable2<T, U
sl@0
   495
    , right_shiftable2<T, U, B
sl@0
   496
      > > {};
sl@0
   497
sl@0
   498
template <class T, class B = ::boost::detail::empty_base>
sl@0
   499
struct shiftable1
sl@0
   500
    : left_shiftable1<T
sl@0
   501
    , right_shiftable1<T, B
sl@0
   502
      > > {};
sl@0
   503
sl@0
   504
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   505
struct ring_operators2
sl@0
   506
    : additive2<T, U
sl@0
   507
    , subtractable2_left<T, U
sl@0
   508
    , multipliable2<T, U, B
sl@0
   509
      > > > {};
sl@0
   510
sl@0
   511
template <class T, class B = ::boost::detail::empty_base>
sl@0
   512
struct ring_operators1
sl@0
   513
    : additive1<T
sl@0
   514
    , multipliable1<T, B
sl@0
   515
      > > {};
sl@0
   516
sl@0
   517
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   518
struct ordered_ring_operators2
sl@0
   519
    : ring_operators2<T, U
sl@0
   520
    , totally_ordered2<T, U, B
sl@0
   521
      > > {};
sl@0
   522
sl@0
   523
template <class T, class B = ::boost::detail::empty_base>
sl@0
   524
struct ordered_ring_operators1
sl@0
   525
    : ring_operators1<T
sl@0
   526
    , totally_ordered1<T, B
sl@0
   527
      > > {};
sl@0
   528
sl@0
   529
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   530
struct field_operators2
sl@0
   531
    : ring_operators2<T, U
sl@0
   532
    , dividable2<T, U
sl@0
   533
    , dividable2_left<T, U, B
sl@0
   534
      > > > {};
sl@0
   535
sl@0
   536
template <class T, class B = ::boost::detail::empty_base>
sl@0
   537
struct field_operators1
sl@0
   538
    : ring_operators1<T
sl@0
   539
    , dividable1<T, B
sl@0
   540
      > > {};
sl@0
   541
sl@0
   542
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   543
struct ordered_field_operators2
sl@0
   544
    : field_operators2<T, U
sl@0
   545
    , totally_ordered2<T, U, B
sl@0
   546
      > > {};
sl@0
   547
sl@0
   548
template <class T, class B = ::boost::detail::empty_base>
sl@0
   549
struct ordered_field_operators1
sl@0
   550
    : field_operators1<T
sl@0
   551
    , totally_ordered1<T, B
sl@0
   552
      > > {};
sl@0
   553
sl@0
   554
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   555
struct euclidian_ring_operators2
sl@0
   556
    : ring_operators2<T, U
sl@0
   557
    , dividable2<T, U
sl@0
   558
    , dividable2_left<T, U
sl@0
   559
    , modable2<T, U
sl@0
   560
    , modable2_left<T, U, B
sl@0
   561
      > > > > > {};
sl@0
   562
sl@0
   563
template <class T, class B = ::boost::detail::empty_base>
sl@0
   564
struct euclidian_ring_operators1
sl@0
   565
    : ring_operators1<T
sl@0
   566
    , dividable1<T
sl@0
   567
    , modable1<T, B
sl@0
   568
      > > > {};
sl@0
   569
sl@0
   570
template <class T, class U, class B = ::boost::detail::empty_base>
sl@0
   571
struct ordered_euclidian_ring_operators2
sl@0
   572
    : totally_ordered2<T, U
sl@0
   573
    , euclidian_ring_operators2<T, U, B
sl@0
   574
      > > {};
sl@0
   575
sl@0
   576
template <class T, class B = ::boost::detail::empty_base>
sl@0
   577
struct ordered_euclidian_ring_operators1
sl@0
   578
    : totally_ordered1<T
sl@0
   579
    , euclidian_ring_operators1<T, B
sl@0
   580
      > > {};
sl@0
   581
      
sl@0
   582
template <class T, class P, class B = ::boost::detail::empty_base>
sl@0
   583
struct input_iteratable
sl@0
   584
    : equality_comparable1<T
sl@0
   585
    , incrementable<T
sl@0
   586
    , dereferenceable<T, P, B
sl@0
   587
      > > > {};
sl@0
   588
sl@0
   589
template <class T, class B = ::boost::detail::empty_base>
sl@0
   590
struct output_iteratable
sl@0
   591
    : incrementable<T, B
sl@0
   592
      > {};
sl@0
   593
sl@0
   594
template <class T, class P, class B = ::boost::detail::empty_base>
sl@0
   595
struct forward_iteratable
sl@0
   596
    : input_iteratable<T, P, B
sl@0
   597
      > {};
sl@0
   598
sl@0
   599
template <class T, class P, class B = ::boost::detail::empty_base>
sl@0
   600
struct bidirectional_iteratable
sl@0
   601
    : forward_iteratable<T, P
sl@0
   602
    , decrementable<T, B
sl@0
   603
      > > {};
sl@0
   604
sl@0
   605
//  To avoid repeated derivation from equality_comparable,
sl@0
   606
//  which is an indirect base class of bidirectional_iterable,
sl@0
   607
//  random_access_iteratable must not be derived from totally_ordered1
sl@0
   608
//  but from less_than_comparable1 only. (Helmut Zeisel, 02-Dec-2001)
sl@0
   609
template <class T, class P, class D, class R, class B = ::boost::detail::empty_base>
sl@0
   610
struct random_access_iteratable
sl@0
   611
    : bidirectional_iteratable<T, P
sl@0
   612
    , less_than_comparable1<T
sl@0
   613
    , additive2<T, D
sl@0
   614
    , indexable<T, D, R, B
sl@0
   615
      > > > > {};
sl@0
   616
sl@0
   617
#ifndef BOOST_NO_OPERATORS_IN_NAMESPACE
sl@0
   618
} // namespace boost
sl@0
   619
#endif // BOOST_NO_OPERATORS_IN_NAMESPACE
sl@0
   620
sl@0
   621
sl@0
   622
// BOOST_IMPORT_TEMPLATE1 .. BOOST_IMPORT_TEMPLATE4 -
sl@0
   623
//
sl@0
   624
// When BOOST_NO_OPERATORS_IN_NAMESPACE is defined we need a way to import an
sl@0
   625
// operator template into the boost namespace. BOOST_IMPORT_TEMPLATE1 is used
sl@0
   626
// for one-argument forms of operator templates; BOOST_IMPORT_TEMPLATE2 for
sl@0
   627
// two-argument forms. Note that these macros expect to be invoked from within
sl@0
   628
// boost.
sl@0
   629
sl@0
   630
#ifndef BOOST_NO_OPERATORS_IN_NAMESPACE
sl@0
   631
sl@0
   632
  // The template is already in boost so we have nothing to do.
sl@0
   633
# define BOOST_IMPORT_TEMPLATE4(template_name)
sl@0
   634
# define BOOST_IMPORT_TEMPLATE3(template_name)
sl@0
   635
# define BOOST_IMPORT_TEMPLATE2(template_name)
sl@0
   636
# define BOOST_IMPORT_TEMPLATE1(template_name)
sl@0
   637
sl@0
   638
#else // BOOST_NO_OPERATORS_IN_NAMESPACE
sl@0
   639
sl@0
   640
#  ifndef BOOST_NO_USING_TEMPLATE
sl@0
   641
sl@0
   642
     // Bring the names in with a using-declaration
sl@0
   643
     // to avoid stressing the compiler.
sl@0
   644
#    define BOOST_IMPORT_TEMPLATE4(template_name) using ::template_name;
sl@0
   645
#    define BOOST_IMPORT_TEMPLATE3(template_name) using ::template_name;
sl@0
   646
#    define BOOST_IMPORT_TEMPLATE2(template_name) using ::template_name;
sl@0
   647
#    define BOOST_IMPORT_TEMPLATE1(template_name) using ::template_name;
sl@0
   648
sl@0
   649
#  else
sl@0
   650
sl@0
   651
     // Otherwise, because a Borland C++ 5.5 bug prevents a using declaration
sl@0
   652
     // from working, we are forced to use inheritance for that compiler.
sl@0
   653
#    define BOOST_IMPORT_TEMPLATE4(template_name)                                          \
sl@0
   654
     template <class T, class U, class V, class W, class B = ::boost::detail::empty_base>  \
sl@0
   655
     struct template_name : ::template_name<T, U, V, W, B> {};
sl@0
   656
sl@0
   657
#    define BOOST_IMPORT_TEMPLATE3(template_name)                                 \
sl@0
   658
     template <class T, class U, class V, class B = ::boost::detail::empty_base>  \
sl@0
   659
     struct template_name : ::template_name<T, U, V, B> {};
sl@0
   660
sl@0
   661
#    define BOOST_IMPORT_TEMPLATE2(template_name)                              \
sl@0
   662
     template <class T, class U, class B = ::boost::detail::empty_base>        \
sl@0
   663
     struct template_name : ::template_name<T, U, B> {};
sl@0
   664
sl@0
   665
#    define BOOST_IMPORT_TEMPLATE1(template_name)                              \
sl@0
   666
     template <class T, class B = ::boost::detail::empty_base>                 \
sl@0
   667
     struct template_name : ::template_name<T, B> {};
sl@0
   668
sl@0
   669
#  endif // BOOST_NO_USING_TEMPLATE
sl@0
   670
sl@0
   671
#endif // BOOST_NO_OPERATORS_IN_NAMESPACE
sl@0
   672
sl@0
   673
//
sl@0
   674
// Here's where we put it all together, defining the xxxx forms of the templates
sl@0
   675
// in namespace boost. We also define specializations of is_chained_base<> for
sl@0
   676
// the xxxx, xxxx1, and xxxx2 templates, importing them into boost:: as
sl@0
   677
// necessary.
sl@0
   678
//
sl@0
   679
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   680
sl@0
   681
// is_chained_base<> - a traits class used to distinguish whether an operator
sl@0
   682
// template argument is being used for base class chaining, or is specifying a
sl@0
   683
// 2nd argument type.
sl@0
   684
sl@0
   685
namespace boost {
sl@0
   686
// A type parameter is used instead of a plain bool because Borland's compiler
sl@0
   687
// didn't cope well with the more obvious non-type template parameter.
sl@0
   688
namespace detail {
sl@0
   689
  struct true_t {};
sl@0
   690
  struct false_t {};
sl@0
   691
} // namespace detail
sl@0
   692
sl@0
   693
// Unspecialized version assumes that most types are not being used for base
sl@0
   694
// class chaining. We specialize for the operator templates defined in this
sl@0
   695
// library.
sl@0
   696
template<class T> struct is_chained_base {
sl@0
   697
  typedef ::boost::detail::false_t value;
sl@0
   698
};
sl@0
   699
sl@0
   700
} // namespace boost
sl@0
   701
sl@0
   702
// Import a 4-type-argument operator template into boost (if necessary) and
sl@0
   703
// provide a specialization of 'is_chained_base<>' for it.
sl@0
   704
# define BOOST_OPERATOR_TEMPLATE4(template_name4)                     \
sl@0
   705
  BOOST_IMPORT_TEMPLATE4(template_name4)                              \
sl@0
   706
  template<class T, class U, class V, class W, class B>               \
sl@0
   707
  struct is_chained_base< ::boost::template_name4<T, U, V, W, B> > {  \
sl@0
   708
    typedef ::boost::detail::true_t value;                            \
sl@0
   709
  };
sl@0
   710
sl@0
   711
// Import a 3-type-argument operator template into boost (if necessary) and
sl@0
   712
// provide a specialization of 'is_chained_base<>' for it.
sl@0
   713
# define BOOST_OPERATOR_TEMPLATE3(template_name3)                     \
sl@0
   714
  BOOST_IMPORT_TEMPLATE3(template_name3)                              \
sl@0
   715
  template<class T, class U, class V, class B>                        \
sl@0
   716
  struct is_chained_base< ::boost::template_name3<T, U, V, B> > {     \
sl@0
   717
    typedef ::boost::detail::true_t value;                            \
sl@0
   718
  };
sl@0
   719
sl@0
   720
// Import a 2-type-argument operator template into boost (if necessary) and
sl@0
   721
// provide a specialization of 'is_chained_base<>' for it.
sl@0
   722
# define BOOST_OPERATOR_TEMPLATE2(template_name2)                  \
sl@0
   723
  BOOST_IMPORT_TEMPLATE2(template_name2)                           \
sl@0
   724
  template<class T, class U, class B>                              \
sl@0
   725
  struct is_chained_base< ::boost::template_name2<T, U, B> > {     \
sl@0
   726
    typedef ::boost::detail::true_t value;                         \
sl@0
   727
  };
sl@0
   728
sl@0
   729
// Import a 1-type-argument operator template into boost (if necessary) and
sl@0
   730
// provide a specialization of 'is_chained_base<>' for it.
sl@0
   731
# define BOOST_OPERATOR_TEMPLATE1(template_name1)                  \
sl@0
   732
  BOOST_IMPORT_TEMPLATE1(template_name1)                           \
sl@0
   733
  template<class T, class B>                                       \
sl@0
   734
  struct is_chained_base< ::boost::template_name1<T, B> > {        \
sl@0
   735
    typedef ::boost::detail::true_t value;                         \
sl@0
   736
  };
sl@0
   737
sl@0
   738
// BOOST_OPERATOR_TEMPLATE(template_name) defines template_name<> such that it
sl@0
   739
// can be used for specifying both 1-argument and 2-argument forms. Requires the
sl@0
   740
// existence of two previously defined class templates named '<template_name>1'
sl@0
   741
// and '<template_name>2' which must implement the corresponding 1- and 2-
sl@0
   742
// argument forms.
sl@0
   743
//
sl@0
   744
// The template type parameter O == is_chained_base<U>::value is used to
sl@0
   745
// distinguish whether the 2nd argument to <template_name> is being used for
sl@0
   746
// base class chaining from another boost operator template or is describing a
sl@0
   747
// 2nd operand type. O == true_t only when U is actually an another operator
sl@0
   748
// template from the library. Partial specialization is used to select an
sl@0
   749
// implementation in terms of either '<template_name>1' or '<template_name>2'.
sl@0
   750
//
sl@0
   751
sl@0
   752
# define BOOST_OPERATOR_TEMPLATE(template_name)                    \
sl@0
   753
template <class T                                                  \
sl@0
   754
         ,class U = T                                              \
sl@0
   755
         ,class B = ::boost::detail::empty_base                    \
sl@0
   756
         ,class O = typename is_chained_base<U>::value             \
sl@0
   757
         >                                                         \
sl@0
   758
struct template_name : template_name##2<T, U, B> {};               \
sl@0
   759
                                                                   \
sl@0
   760
template<class T, class U, class B>                                \
sl@0
   761
struct template_name<T, U, B, ::boost::detail::true_t>             \
sl@0
   762
  : template_name##1<T, U> {};                                     \
sl@0
   763
                                                                   \
sl@0
   764
template <class T, class B>                                        \
sl@0
   765
struct template_name<T, T, B, ::boost::detail::false_t>            \
sl@0
   766
  : template_name##1<T, B> {};                                     \
sl@0
   767
                                                                   \
sl@0
   768
template<class T, class U, class B, class O>                       \
sl@0
   769
struct is_chained_base< ::boost::template_name<T, U, B, O> > {     \
sl@0
   770
  typedef ::boost::detail::true_t value;                           \
sl@0
   771
};                                                                 \
sl@0
   772
                                                                   \
sl@0
   773
BOOST_OPERATOR_TEMPLATE2(template_name##2)                         \
sl@0
   774
BOOST_OPERATOR_TEMPLATE1(template_name##1)
sl@0
   775
sl@0
   776
sl@0
   777
#else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   778
sl@0
   779
#  define BOOST_OPERATOR_TEMPLATE4(template_name4) \
sl@0
   780
        BOOST_IMPORT_TEMPLATE4(template_name4)
sl@0
   781
#  define BOOST_OPERATOR_TEMPLATE3(template_name3) \
sl@0
   782
        BOOST_IMPORT_TEMPLATE3(template_name3)
sl@0
   783
#  define BOOST_OPERATOR_TEMPLATE2(template_name2) \
sl@0
   784
        BOOST_IMPORT_TEMPLATE2(template_name2)
sl@0
   785
#  define BOOST_OPERATOR_TEMPLATE1(template_name1) \
sl@0
   786
        BOOST_IMPORT_TEMPLATE1(template_name1)
sl@0
   787
sl@0
   788
   // In this case we can only assume that template_name<> is equivalent to the
sl@0
   789
   // more commonly needed template_name1<> form.
sl@0
   790
#  define BOOST_OPERATOR_TEMPLATE(template_name)                   \
sl@0
   791
   template <class T, class B = ::boost::detail::empty_base>       \
sl@0
   792
   struct template_name : template_name##1<T, B> {};
sl@0
   793
sl@0
   794
#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   795
sl@0
   796
namespace boost {
sl@0
   797
    
sl@0
   798
BOOST_OPERATOR_TEMPLATE(less_than_comparable)
sl@0
   799
BOOST_OPERATOR_TEMPLATE(equality_comparable)
sl@0
   800
BOOST_OPERATOR_TEMPLATE(multipliable)
sl@0
   801
BOOST_OPERATOR_TEMPLATE(addable)
sl@0
   802
BOOST_OPERATOR_TEMPLATE(subtractable)
sl@0
   803
BOOST_OPERATOR_TEMPLATE2(subtractable2_left)
sl@0
   804
BOOST_OPERATOR_TEMPLATE(dividable)
sl@0
   805
BOOST_OPERATOR_TEMPLATE2(dividable2_left)
sl@0
   806
BOOST_OPERATOR_TEMPLATE(modable)
sl@0
   807
BOOST_OPERATOR_TEMPLATE2(modable2_left)
sl@0
   808
BOOST_OPERATOR_TEMPLATE(xorable)
sl@0
   809
BOOST_OPERATOR_TEMPLATE(andable)
sl@0
   810
BOOST_OPERATOR_TEMPLATE(orable)
sl@0
   811
sl@0
   812
BOOST_OPERATOR_TEMPLATE1(incrementable)
sl@0
   813
BOOST_OPERATOR_TEMPLATE1(decrementable)
sl@0
   814
sl@0
   815
BOOST_OPERATOR_TEMPLATE2(dereferenceable)
sl@0
   816
BOOST_OPERATOR_TEMPLATE3(indexable)
sl@0
   817
sl@0
   818
BOOST_OPERATOR_TEMPLATE(left_shiftable)
sl@0
   819
BOOST_OPERATOR_TEMPLATE(right_shiftable)
sl@0
   820
BOOST_OPERATOR_TEMPLATE(equivalent)
sl@0
   821
BOOST_OPERATOR_TEMPLATE(partially_ordered)
sl@0
   822
sl@0
   823
BOOST_OPERATOR_TEMPLATE(totally_ordered)
sl@0
   824
BOOST_OPERATOR_TEMPLATE(additive)
sl@0
   825
BOOST_OPERATOR_TEMPLATE(multiplicative)
sl@0
   826
BOOST_OPERATOR_TEMPLATE(integer_multiplicative)
sl@0
   827
BOOST_OPERATOR_TEMPLATE(arithmetic)
sl@0
   828
BOOST_OPERATOR_TEMPLATE(integer_arithmetic)
sl@0
   829
BOOST_OPERATOR_TEMPLATE(bitwise)
sl@0
   830
BOOST_OPERATOR_TEMPLATE1(unit_steppable)
sl@0
   831
BOOST_OPERATOR_TEMPLATE(shiftable)
sl@0
   832
BOOST_OPERATOR_TEMPLATE(ring_operators)
sl@0
   833
BOOST_OPERATOR_TEMPLATE(ordered_ring_operators)
sl@0
   834
BOOST_OPERATOR_TEMPLATE(field_operators)
sl@0
   835
BOOST_OPERATOR_TEMPLATE(ordered_field_operators)
sl@0
   836
BOOST_OPERATOR_TEMPLATE(euclidian_ring_operators)
sl@0
   837
BOOST_OPERATOR_TEMPLATE(ordered_euclidian_ring_operators)
sl@0
   838
BOOST_OPERATOR_TEMPLATE2(input_iteratable)
sl@0
   839
BOOST_OPERATOR_TEMPLATE1(output_iteratable)
sl@0
   840
BOOST_OPERATOR_TEMPLATE2(forward_iteratable)
sl@0
   841
BOOST_OPERATOR_TEMPLATE2(bidirectional_iteratable)
sl@0
   842
BOOST_OPERATOR_TEMPLATE4(random_access_iteratable)
sl@0
   843
sl@0
   844
#undef BOOST_OPERATOR_TEMPLATE
sl@0
   845
#undef BOOST_OPERATOR_TEMPLATE4
sl@0
   846
#undef BOOST_OPERATOR_TEMPLATE3
sl@0
   847
#undef BOOST_OPERATOR_TEMPLATE2
sl@0
   848
#undef BOOST_OPERATOR_TEMPLATE1
sl@0
   849
#undef BOOST_IMPORT_TEMPLATE1
sl@0
   850
#undef BOOST_IMPORT_TEMPLATE2
sl@0
   851
#undef BOOST_IMPORT_TEMPLATE3
sl@0
   852
#undef BOOST_IMPORT_TEMPLATE4
sl@0
   853
sl@0
   854
// The following 'operators' classes can only be used portably if the derived class
sl@0
   855
// declares ALL of the required member operators.
sl@0
   856
template <class T, class U>
sl@0
   857
struct operators2
sl@0
   858
    : totally_ordered2<T,U
sl@0
   859
    , integer_arithmetic2<T,U
sl@0
   860
    , bitwise2<T,U
sl@0
   861
      > > > {};
sl@0
   862
sl@0
   863
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   864
template <class T, class U = T>
sl@0
   865
struct operators : operators2<T, U> {};
sl@0
   866
sl@0
   867
template <class T> struct operators<T, T>
sl@0
   868
#else
sl@0
   869
template <class T> struct operators
sl@0
   870
#endif
sl@0
   871
    : totally_ordered<T
sl@0
   872
    , integer_arithmetic<T
sl@0
   873
    , bitwise<T
sl@0
   874
    , unit_steppable<T
sl@0
   875
      > > > > {};
sl@0
   876
sl@0
   877
//  Iterator helper classes (contributed by Jeremy Siek) -------------------//
sl@0
   878
//  (Input and output iterator helpers contributed by Daryle Walker) -------//
sl@0
   879
//  (Changed to use combined operator classes by Daryle Walker) ------------//
sl@0
   880
template <class T,
sl@0
   881
          class V,
sl@0
   882
          class D = std::ptrdiff_t,
sl@0
   883
          class P = V const *,
sl@0
   884
          class R = V const &>
sl@0
   885
struct input_iterator_helper
sl@0
   886
  : input_iteratable<T, P
sl@0
   887
  , boost::iterator<std::input_iterator_tag, V, D, P, R
sl@0
   888
    > > {};
sl@0
   889
sl@0
   890
template<class T>
sl@0
   891
struct output_iterator_helper
sl@0
   892
  : output_iteratable<T
sl@0
   893
  , boost::iterator<std::output_iterator_tag, void, void, void, void
sl@0
   894
  > >
sl@0
   895
{
sl@0
   896
  T& operator*()  { return static_cast<T&>(*this); }
sl@0
   897
  T& operator++() { return static_cast<T&>(*this); }
sl@0
   898
};
sl@0
   899
sl@0
   900
template <class T,
sl@0
   901
          class V,
sl@0
   902
          class D = std::ptrdiff_t,
sl@0
   903
          class P = V*,
sl@0
   904
          class R = V&>
sl@0
   905
struct forward_iterator_helper
sl@0
   906
  : forward_iteratable<T, P
sl@0
   907
  , boost::iterator<std::forward_iterator_tag, V, D, P, R
sl@0
   908
    > > {};
sl@0
   909
sl@0
   910
template <class T,
sl@0
   911
          class V,
sl@0
   912
          class D = std::ptrdiff_t,
sl@0
   913
          class P = V*,
sl@0
   914
          class R = V&>
sl@0
   915
struct bidirectional_iterator_helper
sl@0
   916
  : bidirectional_iteratable<T, P
sl@0
   917
  , boost::iterator<std::bidirectional_iterator_tag, V, D, P, R
sl@0
   918
    > > {};
sl@0
   919
sl@0
   920
template <class T,
sl@0
   921
          class V, 
sl@0
   922
          class D = std::ptrdiff_t,
sl@0
   923
          class P = V*,
sl@0
   924
          class R = V&>
sl@0
   925
struct random_access_iterator_helper
sl@0
   926
  : random_access_iteratable<T, P, D, R
sl@0
   927
  , boost::iterator<std::random_access_iterator_tag, V, D, P, R
sl@0
   928
    > >
sl@0
   929
{
sl@0
   930
  friend D requires_difference_operator(const T& x, const T& y) {
sl@0
   931
    return x - y;
sl@0
   932
  }
sl@0
   933
}; // random_access_iterator_helper
sl@0
   934
sl@0
   935
} // namespace boost
sl@0
   936
sl@0
   937
#if defined(__sgi) && !defined(__GNUC__)
sl@0
   938
#pragma reset woff 1234
sl@0
   939
#endif
sl@0
   940
sl@0
   941
#endif // BOOST_OPERATORS_HPP