From Jason Turner

[class.slice.overview]

Diff to HTML by rtfpessoa

tmp/tmpr1tevuf9/{from.md → to.md} RENAMED
@@ -4,10 +4,11 @@
4
  namespace std {
5
  class slice {
6
  public:
7
  slice();
8
  slice(size_t, size_t, size_t);
 
9
 
10
  size_t start() const;
11
  size_t size() const;
12
  size_t stride() const;
13
 
@@ -15,7 +16,7 @@ namespace std {
15
  };
16
  }
17
  ```
18
 
19
  The `slice` class represents a BLAS-like slice from an array. Such a
20
- slice is specified by a starting index, a length, and a stride.[^12]
21
 
 
4
  namespace std {
5
  class slice {
6
  public:
7
  slice();
8
  slice(size_t, size_t, size_t);
9
+ slice(const slice&);
10
 
11
  size_t start() const;
12
  size_t size() const;
13
  size_t stride() const;
14
 
 
16
  };
17
  }
18
  ```
19
 
20
  The `slice` class represents a BLAS-like slice from an array. Such a
21
+ slice is specified by a starting index, a length, and a stride.[^13]
22