OSDN Git Service

2000-04-21 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / bits / slice_array.h
1 // The template and inlines for the -*- C++ -*- slice_array class.
2
3 // Copyright (C) 1997-1999 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 namespace std {
36     
37     template<typename _Tp>
38     class slice_array
39     {
40     public:
41         typedef _Tp value_type;
42         
43         void operator=   (const valarray<_Tp>&) const;
44         void operator*=  (const valarray<_Tp>&) const;
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 _Tp &);
55         //        ~slice_array ();
56         
57         template<class _Dom>
58         void operator=   (const _Expr<_Dom,_Tp>&) const;
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         
80     private:
81         friend class valarray<_Tp>;
82         slice_array(_Array<_Tp>, const slice&);
83         
84         const size_t     _M_sz;
85         const size_t     _M_stride;
86         const _Array<_Tp> _M_array;
87         
88         // this constructor is implemented since we need to return a value.
89         slice_array (const slice_array&);
90
91         // not implemented
92         slice_array ();
93         slice_array& operator= (const slice_array&);
94     };
95
96     template<typename _Tp>
97     inline slice_array<_Tp>::slice_array (_Array<_Tp> __a, const slice& __s)
98             : _M_sz (__s.size ()), _M_stride (__s.stride ()),
99               _M_array (__a.begin () + __s.start ()) {}
100
101     
102     template<typename _Tp>
103     inline slice_array<_Tp>::slice_array(const slice_array<_Tp>& a)
104             : _M_sz(a._M_sz), _M_stride(a._M_stride), _M_array(a._M_array) {}
105     
106     //    template<typename _Tp>
107     //    inline slice_array<_Tp>::~slice_array () {}
108
109     template<typename _Tp>
110     inline void
111     slice_array<_Tp>::operator= (const _Tp& __t) 
112     { __valarray_fill (_M_array, _M_sz, _M_stride, __t); }
113     
114     template<typename _Tp>
115     inline void
116     slice_array<_Tp>::operator= (const valarray<_Tp>& __v) const
117     { __valarray_copy (_Array<_Tp> (__v), _M_array, _M_sz, _M_stride); }
118     
119     template<typename _Tp>
120     template<class _Dom>
121     inline void
122     slice_array<_Tp>::operator= (const _Expr<_Dom,_Tp>& __e) const
123     { __valarray_copy (__e, _M_sz, _M_array, _M_stride); }
124
125 #undef _DEFINE_VALARRAY_OPERATOR
126 #define _DEFINE_VALARRAY_OPERATOR(op, name)                             \
127 template<typename _Tp>                                                  \
128 inline void                                                             \
129 slice_array<_Tp>::operator##op##= (const valarray<_Tp>& __v) const      \
130 {                                                                       \
131   _Array_augmented_##name (_M_array, _M_sz, _M_stride, _Array<_Tp> (__v));\
132 }                                                                       \
133                                                                         \
134 template<typename _Tp> template<class _Dom>                             \
135 inline void                                                             \
136 slice_array<_Tp>::operator##op##= (const _Expr<_Dom,_Tp>& __e) const    \
137 {                                                                       \
138     _Array_augmented_##name (_M_array, _M_stride, __e, _M_sz);          \
139 }
140         
141
142 _DEFINE_VALARRAY_OPERATOR(*, multiplies)
143 _DEFINE_VALARRAY_OPERATOR(/, divides)
144 _DEFINE_VALARRAY_OPERATOR(%, modulus)
145 _DEFINE_VALARRAY_OPERATOR(+, plus)
146 _DEFINE_VALARRAY_OPERATOR(-, minus)
147 _DEFINE_VALARRAY_OPERATOR(^, xor)
148 _DEFINE_VALARRAY_OPERATOR(&, and)
149 _DEFINE_VALARRAY_OPERATOR(|, or)
150 _DEFINE_VALARRAY_OPERATOR(<<, shift_left)
151 _DEFINE_VALARRAY_OPERATOR(>>, shift_right)
152
153 #undef _DEFINE_VALARRAY_OPERATOR
154
155 } // std::
156
157 #endif /* _CPP_BITS_SLICE_ARRAY_H */
158
159 // Local Variables:
160 // mode:c++
161 // End: