OSDN Git Service

d016a0621974292460d3cd97fab2172094f17b3c
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / include / bits / slice_array.h
1 // The template and inlines for the -*- C++ -*- slice_array class.
2
3 // Copyright (C) 1997-1999, 2000 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING.  If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction.  Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License.  This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
29
30 // Written by Gabriel Dos Reis <Gabriel.Dos-Reis@DPTMaths.ENS-Cachan.Fr>
31
32 #ifndef _CPP_BITS_SLICE_ARRAY_H
33 #define _CPP_BITS_SLICE_ARRAY_H 1
34
35 #pragma GCC system_header
36
37 namespace std {
38     
39     template<typename _Tp>
40     class slice_array
41     {
42     public:
43         typedef _Tp value_type;
44         
45         void operator=   (const valarray<_Tp>&) const;
46         void operator*=  (const valarray<_Tp>&) const;
47         void operator/=  (const valarray<_Tp>&) const;
48         void operator%=  (const valarray<_Tp>&) const;
49         void operator+=  (const valarray<_Tp>&) const;
50         void operator-=  (const valarray<_Tp>&) const;
51         void operator^=  (const valarray<_Tp>&) const;
52         void operator&=  (const valarray<_Tp>&) const;
53         void operator|=  (const valarray<_Tp>&) const;
54         void operator<<= (const valarray<_Tp>&) const;
55         void operator>>= (const valarray<_Tp>&) const;
56         void operator= (const _Tp &);
57         //        ~slice_array ();
58         
59         template<class _Dom>
60         void operator=   (const _Expr<_Dom,_Tp>&) const;
61         template<class _Dom>
62         void operator*=  (const _Expr<_Dom,_Tp>&) const;
63         template<class _Dom>
64         void operator/=  (const _Expr<_Dom,_Tp>&) const;
65         template<class _Dom>
66         void operator%=  (const _Expr<_Dom,_Tp>&) const;
67         template<class _Dom>
68         void operator+=  (const _Expr<_Dom,_Tp>&) const;
69         template<class _Dom>
70         void operator-=  (const _Expr<_Dom,_Tp>&) const;
71         template<class _Dom>
72         void operator^=  (const _Expr<_Dom,_Tp>&) const;
73         template<class _Dom>
74         void operator&=  (const _Expr<_Dom,_Tp>&) const;
75         template<class _Dom>
76         void operator|=  (const _Expr<_Dom,_Tp>&) const;
77         template<class _Dom>
78         void operator<<= (const _Expr<_Dom,_Tp>&) const;
79         template<class _Dom>
80         void operator>>= (const _Expr<_Dom,_Tp>&) const;
81         
82     private:
83         friend class valarray<_Tp>;
84         slice_array(_Array<_Tp>, const slice&);
85         
86         const size_t     _M_sz;
87         const size_t     _M_stride;
88         const _Array<_Tp> _M_array;
89         
90         // this constructor is implemented since we need to return a value.
91         slice_array (const slice_array&);
92
93         // not implemented
94         slice_array ();
95         slice_array& operator= (const slice_array&);
96     };
97
98     template<typename _Tp>
99     inline slice_array<_Tp>::slice_array (_Array<_Tp> __a, const slice& __s)
100             : _M_sz (__s.size ()), _M_stride (__s.stride ()),
101               _M_array (__a.begin () + __s.start ()) {}
102
103     
104     template<typename _Tp>
105     inline slice_array<_Tp>::slice_array(const slice_array<_Tp>& a)
106             : _M_sz(a._M_sz), _M_stride(a._M_stride), _M_array(a._M_array) {}
107     
108     //    template<typename _Tp>
109     //    inline slice_array<_Tp>::~slice_array () {}
110
111     template<typename _Tp>
112     inline void
113     slice_array<_Tp>::operator= (const _Tp& __t) 
114     { __valarray_fill (_M_array, _M_sz, _M_stride, __t); }
115     
116     template<typename _Tp>
117     inline void
118     slice_array<_Tp>::operator= (const valarray<_Tp>& __v) const
119     { __valarray_copy (_Array<_Tp> (__v), _M_array, _M_sz, _M_stride); }
120     
121     template<typename _Tp>
122     template<class _Dom>
123     inline void
124     slice_array<_Tp>::operator= (const _Expr<_Dom,_Tp>& __e) const
125     { __valarray_copy (__e, _M_sz, _M_array, _M_stride); }
126
127 #undef _DEFINE_VALARRAY_OPERATOR
128 #define _DEFINE_VALARRAY_OPERATOR(op, name)                             \
129 template<typename _Tp>                                                  \
130 inline void                                                             \
131 slice_array<_Tp>::operator op##= (const valarray<_Tp>& __v) const       \
132 {                                                                       \
133   _Array_augmented_##name (_M_array, _M_sz, _M_stride, _Array<_Tp> (__v));\
134 }                                                                       \
135                                                                         \
136 template<typename _Tp> template<class _Dom>                             \
137 inline void                                                             \
138 slice_array<_Tp>::operator op##= (const _Expr<_Dom,_Tp>& __e) const     \
139 {                                                                       \
140     _Array_augmented_##name (_M_array, _M_stride, __e, _M_sz);          \
141 }
142         
143
144 _DEFINE_VALARRAY_OPERATOR(*, multiplies)
145 _DEFINE_VALARRAY_OPERATOR(/, divides)
146 _DEFINE_VALARRAY_OPERATOR(%, modulus)
147 _DEFINE_VALARRAY_OPERATOR(+, plus)
148 _DEFINE_VALARRAY_OPERATOR(-, minus)
149 _DEFINE_VALARRAY_OPERATOR(^, xor)
150 _DEFINE_VALARRAY_OPERATOR(&, and)
151 _DEFINE_VALARRAY_OPERATOR(|, or)
152 _DEFINE_VALARRAY_OPERATOR(<<, shift_left)
153 _DEFINE_VALARRAY_OPERATOR(>>, shift_right)
154
155 #undef _DEFINE_VALARRAY_OPERATOR
156
157 } // std::
158
159 #endif /* _CPP_BITS_SLICE_ARRAY_H */
160
161 // Local Variables:
162 // mode:c++
163 // End: