1 // The template and inlines for the -*- C++ -*- indirect_array class.
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2004
4 // Free Software Foundation, Inc.
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
31 // Written by Gabriel Dos Reis <Gabriel.Dos-Reis@DPTMaths.ENS-Cachan.Fr>
33 /** @file indirect_array.h
34 * This is an internal header file, included by other library headers.
35 * You should not attempt to use it directly.
38 #ifndef _INDIRECT_ARRAY_H
39 #define _INDIRECT_ARRAY_H 1
41 #pragma GCC system_header
46 * @brief Reference to arbitrary subset of an array.
48 * An indirect_array is a reference to the actual elements of an array
49 * specified by an ordered array of indices. The way to get an indirect_array is to
50 * call operator[](valarray<size_t>) on a valarray. The returned
51 * indirect_array then permits carrying operations out on the referenced
52 * subset of elements in the original valarray.
54 * For example, if an indirect_array is obtained using the array (4,2,0) as
55 * an argument, and then assigned to an array containing (1,2,3), then the
56 * underlying array will have array[0]==3, array[2]==2, and array[4]==1.
58 * @param Tp Element type.
64 typedef _Tp value_type
;
66 // _GLIBCXX_RESOLVE_LIB_DEFECTS
67 // 253. valarray helper functions are almost entirely useless
69 /// Copy constructor. Both slices refer to the same underlying array.
70 indirect_array(const indirect_array
&);
72 /// Assignment operator. Assigns elements to corresponding elements
74 indirect_array
& operator=(const indirect_array
&);
76 /// Assign slice elements to corresponding elements of @a v.
77 void operator=(const valarray
<_Tp
>&) const;
78 /// Multiply slice elements by corresponding elements of @a v.
79 void operator*=(const valarray
<_Tp
>&) const;
80 /// Divide slice elements by corresponding elements of @a v.
81 void operator/=(const valarray
<_Tp
>&) const;
82 /// Modulo slice elements by corresponding elements of @a v.
83 void operator%=(const valarray
<_Tp
>&) const;
84 /// Add corresponding elements of @a v to slice elements.
85 void operator+=(const valarray
<_Tp
>&) const;
86 /// Subtract corresponding elements of @a v from slice elements.
87 void operator-=(const valarray
<_Tp
>&) const;
88 /// Logical xor slice elements with corresponding elements of @a v.
89 void operator^=(const valarray
<_Tp
>&) const;
90 /// Logical and slice elements with corresponding elements of @a v.
91 void operator&=(const valarray
<_Tp
>&) const;
92 /// Logical or slice elements with corresponding elements of @a v.
93 void operator|=(const valarray
<_Tp
>&) const;
94 /// Left shift slice elements by corresponding elements of @a v.
95 void operator<<=(const valarray
<_Tp
>&) const;
96 /// Right shift slice elements by corresponding elements of @a v.
97 void operator>>=(const valarray
<_Tp
>&) const;
98 /// Assign all slice elements to @a t.
99 void operator= (const _Tp
&) const;
100 // ~indirect_array();
103 void operator=(const _Expr
<_Dom
, _Tp
>&) const;
105 void operator*=(const _Expr
<_Dom
, _Tp
>&) const;
107 void operator/=(const _Expr
<_Dom
, _Tp
>&) const;
109 void operator%=(const _Expr
<_Dom
, _Tp
>&) const;
111 void operator+=(const _Expr
<_Dom
, _Tp
>&) const;
113 void operator-=(const _Expr
<_Dom
, _Tp
>&) const;
115 void operator^=(const _Expr
<_Dom
, _Tp
>&) const;
117 void operator&=(const _Expr
<_Dom
, _Tp
>&) const;
119 void operator|=(const _Expr
<_Dom
, _Tp
>&) const;
121 void operator<<=(const _Expr
<_Dom
, _Tp
>&) const;
123 void operator>>=(const _Expr
<_Dom
, _Tp
>&) const;
126 /// Copy constructor. Both slices refer to the same underlying array.
127 indirect_array(_Array
<_Tp
>, size_t, _Array
<size_t>);
129 friend class valarray
<_Tp
>;
130 friend class gslice_array
<_Tp
>;
133 const _Array
<size_t> _M_index
;
134 const _Array
<_Tp
> _M_array
;
140 template<typename _Tp
>
142 indirect_array
<_Tp
>::indirect_array(const indirect_array
<_Tp
>& __a
)
143 : _M_sz(__a
._M_sz
), _M_index(__a
._M_index
), _M_array(__a
._M_array
) {}
145 template<typename _Tp
>
147 indirect_array
<_Tp
>::indirect_array(_Array
<_Tp
> __a
, size_t __s
,
149 : _M_sz(__s
), _M_index(__i
), _M_array(__a
) {}
151 template<typename _Tp
>
152 inline indirect_array
<_Tp
>&
153 indirect_array
<_Tp
>::operator=(const indirect_array
<_Tp
>& __a
)
155 std::__valarray_copy(__a
._M_array
, _M_sz
, __a
._M_index
, _M_array
, _M_index
);
160 template<typename _Tp
>
162 indirect_array
<_Tp
>::operator=(const _Tp
& __t
) const
163 { std::__valarray_fill(_M_array
, _M_index
, _M_sz
, __t
); }
165 template<typename _Tp
>
167 indirect_array
<_Tp
>::operator=(const valarray
<_Tp
>& __v
) const
168 { std::__valarray_copy(_Array
<_Tp
>(__v
), _M_sz
, _M_array
, _M_index
); }
170 template<typename _Tp
>
173 indirect_array
<_Tp
>::operator=(const _Expr
<_Dom
,_Tp
>& __e
) const
174 { std::__valarray_copy(__e
, _M_sz
, _M_array
, _M_index
); }
176 #undef _DEFINE_VALARRAY_OPERATOR
177 #define _DEFINE_VALARRAY_OPERATOR(_Op, _Name) \
178 template<typename _Tp> \
180 indirect_array<_Tp>::operator _Op##=(const valarray<_Tp>& __v) const\
182 _Array_augmented_##_Name(_M_array, _M_index, _Array<_Tp>(__v), _M_sz); \
185 template<typename _Tp> \
186 template<class _Dom> \
188 indirect_array<_Tp>::operator _Op##=(const _Expr<_Dom,_Tp>& __e) const\
190 _Array_augmented_##_Name(_M_array, _M_index, __e, _M_sz); \
193 _DEFINE_VALARRAY_OPERATOR(*, __multiplies
)
194 _DEFINE_VALARRAY_OPERATOR(/, __divides
)
195 _DEFINE_VALARRAY_OPERATOR(%, __modulus
)
196 _DEFINE_VALARRAY_OPERATOR(+, __plus
)
197 _DEFINE_VALARRAY_OPERATOR(-, __minus
)
198 _DEFINE_VALARRAY_OPERATOR(^, __bitwise_xor
)
199 _DEFINE_VALARRAY_OPERATOR(&, __bitwise_and
)
200 _DEFINE_VALARRAY_OPERATOR(|, __bitwise_or
)
201 _DEFINE_VALARRAY_OPERATOR(<<, __shift_left
)
202 _DEFINE_VALARRAY_OPERATOR(>>, __shift_right
)
204 #undef _DEFINE_VALARRAY_OPERATOR
208 #endif /* _INDIRECT_ARRAY_H */