tmp/tmpg5p7h0x2/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
####
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
gslice();
|
| 5 |
gslice(size_t start, const valarray<size_t>& lengths,
|
| 6 |
const valarray<size_t>& strides);
|
|
@@ -8,7 +8,7 @@ gslice(const gslice&);
|
|
| 8 |
```
|
| 9 |
|
| 10 |
The default constructor is equivalent to
|
| 11 |
`gslice(0, valarray<size_t>(), valarray<size_t>())`. The constructor
|
| 12 |
with arguments builds a `gslice` based on a specification of start,
|
| 13 |
-
lengths, and strides, as explained in the previous
|
| 14 |
|
|
|
|
| 1 |
+
#### Constructors <a id="gslice.cons">[[gslice.cons]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
gslice();
|
| 5 |
gslice(size_t start, const valarray<size_t>& lengths,
|
| 6 |
const valarray<size_t>& strides);
|
|
|
|
| 8 |
```
|
| 9 |
|
| 10 |
The default constructor is equivalent to
|
| 11 |
`gslice(0, valarray<size_t>(), valarray<size_t>())`. The constructor
|
| 12 |
with arguments builds a `gslice` based on a specification of start,
|
| 13 |
+
lengths, and strides, as explained in the previous subclause.
|
| 14 |
|