From Jason Turner

[class.slice.overview]

Diff to HTML by rtfpessoa

tmp/tmpe745w43o/{from.md → to.md} RENAMED
@@ -1,6 +1,6 @@
1
- #### Class `slice` overview <a id="class.slice.overview">[[class.slice.overview]]</a>
2
 
3
  ``` cpp
4
  namespace std {
5
  class slice {
6
  public:
@@ -8,10 +8,12 @@ namespace std {
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
  };
14
  }
15
  ```
16
 
17
  The `slice` class represents a BLAS-like slice from an array. Such a
 
1
+ #### Overview <a id="class.slice.overview">[[class.slice.overview]]</a>
2
 
3
  ``` cpp
4
  namespace std {
5
  class slice {
6
  public:
 
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
+
14
+ friend bool operator==(const slice& x, const slice& y);
15
  };
16
  }
17
  ```
18
 
19
  The `slice` class represents a BLAS-like slice from an array. Such a