Init
This commit is contained in:
22
cppdraft/mask/array/assign.md
Normal file
22
cppdraft/mask/array/assign.md
Normal file
@@ -0,0 +1,22 @@
|
||||
[mask.array.assign]
|
||||
|
||||
# 29 Numerics library [[numerics]](./#numerics)
|
||||
|
||||
## 29.6 Numeric arrays [[numarray]](numarray#mask.array.assign)
|
||||
|
||||
### 29.6.8 Class template mask_array [[template.mask.array]](template.mask.array#mask.array.assign)
|
||||
|
||||
#### 29.6.8.2 Assignment [mask.array.assign]
|
||||
|
||||
[ð](#lib:operator=,mask_array)
|
||||
|
||||
`void operator=(const valarray<T>&) const;
|
||||
const mask_array& operator=(const mask_array&) const;
|
||||
`
|
||||
|
||||
[1](#1)
|
||||
|
||||
[#](http://github.com/Eelis/draft/tree/9adde4bc1c62ec234483e63ea3b70a59724c745a/source/numerics.tex#L8937)
|
||||
|
||||
These assignment operators have reference semantics, assigning the values
|
||||
of the argument array elements to selected elements of thevalarray<T> object to which the mask_array object refers[.](#1.sentence-1)
|
||||
31
cppdraft/mask/array/comp/assign.md
Normal file
31
cppdraft/mask/array/comp/assign.md
Normal file
@@ -0,0 +1,31 @@
|
||||
[mask.array.comp.assign]
|
||||
|
||||
# 29 Numerics library [[numerics]](./#numerics)
|
||||
|
||||
## 29.6 Numeric arrays [[numarray]](numarray#mask.array.comp.assign)
|
||||
|
||||
### 29.6.8 Class template mask_array [[template.mask.array]](template.mask.array#mask.array.comp.assign)
|
||||
|
||||
#### 29.6.8.3 Compound assignment [mask.array.comp.assign]
|
||||
|
||||
[ð](#lib:operator*=,mask_array)
|
||||
|
||||
`void operator*= (const valarray<T>&) const;
|
||||
void operator/= (const valarray<T>&) const;
|
||||
void operator%= (const valarray<T>&) const;
|
||||
void operator+= (const valarray<T>&) const;
|
||||
void operator-= (const valarray<T>&) const;
|
||||
void operator^= (const valarray<T>&) const;
|
||||
void operator&= (const valarray<T>&) const;
|
||||
void operator|= (const valarray<T>&) const;
|
||||
void operator<<=(const valarray<T>&) const;
|
||||
void operator>>=(const valarray<T>&) const;
|
||||
`
|
||||
|
||||
[1](#1)
|
||||
|
||||
[#](http://github.com/Eelis/draft/tree/9adde4bc1c62ec234483e63ea3b70a59724c745a/source/numerics.tex#L8970)
|
||||
|
||||
These compound assignments have reference semantics, applying the
|
||||
indicated operation to the elements of the argument array and selected elements
|
||||
of thevalarray<T> object to which the mask_array object refers[.](#1.sentence-1)
|
||||
21
cppdraft/mask/array/fill.md
Normal file
21
cppdraft/mask/array/fill.md
Normal file
@@ -0,0 +1,21 @@
|
||||
[mask.array.fill]
|
||||
|
||||
# 29 Numerics library [[numerics]](./#numerics)
|
||||
|
||||
## 29.6 Numeric arrays [[numarray]](numarray#mask.array.fill)
|
||||
|
||||
### 29.6.8 Class template mask_array [[template.mask.array]](template.mask.array#mask.array.fill)
|
||||
|
||||
#### 29.6.8.4 Fill function [mask.array.fill]
|
||||
|
||||
[ð](#lib:operator=,mask_array)
|
||||
|
||||
`void operator=(const T&) const;
|
||||
`
|
||||
|
||||
[1](#1)
|
||||
|
||||
[#](http://github.com/Eelis/draft/tree/9adde4bc1c62ec234483e63ea3b70a59724c745a/source/numerics.tex#L8986)
|
||||
|
||||
This function has reference semantics, assigning the value of its
|
||||
argument to the elements of thevalarray<T> object to which themask_array object refers[.](#1.sentence-1)
|
||||
Reference in New Issue
Block a user