std:: indirect_array
| Common mathematical functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Mathematical special functions (C++17) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Mathematical constants (C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Basic linear algebra algorithms (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Data-parallel types (SIMD) (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Floating-point environment (C++11) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Complex numbers | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Numeric array (
valarray
)
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Pseudo-random number generation | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Bit manipulation (C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Saturation arithmetic (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Factor operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Interpolations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Generic numeric operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| C-style checked integer arithmetic | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member functions | ||||||||||||||||
| Non-member functions | ||||||||||||||||
| Helper classes | ||||||||||||||||
|
||||||||||||||||
| Deduction guides (C++17) | ||||||||||||||||
| Member functions | ||||
|
Definiert in Header
<valarray>
|
||
|
template
<
class
T
>
class
indirect_array
;
|
||
std::indirect_array
ist ein Hilfstemplate, das vom
valarray-Subscript-Operator
mit
std::
valarray
<
std::
size_t
>
-Argument verwendet wird. Es besitzt Referenzsemantik für eine Teilmenge des Arrays, deren Indizes durch das
std::
valarray
<
std::
size_t
>
-Objekt spezifiziert werden.
Mitgliedertypen
| Typ | Definition |
value_type
|
T
|
Memberfunktionen
Konstruiert ein
indirect_array
(öffentliche Elementfunktion) |
|
Zerstört ein
indirect_array
(öffentliche Elementfunktion) |
|
|
Weist Inhalte zu
(öffentliche Elementfunktion) |
|
|
Führt arithmetische Operationen auf dem durch indirect_array referenzierten Array aus.
(öffentliche Elementfunktion) |
Beispiel
#include <iostream> #include <valarray> int main() { std::valarray<int> data{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; std::valarray<std::size_t> idx{0, 2, 4, 6, 8}; std::cout << "Original valarray: "; for (int n : data) std::cout << n << ' '; std::cout << '\n'; data[idx] += data[idx]; // double the values at indices 'idx' // the type of data[idx] is std::indirect_array<int> std::cout << "After indirect modification: "; for (int n : data) std::cout << n << ' '; std::cout << '\n'; }
Ausgabe:
Original valarray: 0 1 2 3 4 5 6 7 8 9 After indirect modification: 0 1 4 3 8 5 12 7 16 9