From Jason Turner

[unique.ptr.runtime.observers]

Diff to HTML by rtfpessoa

tmp/tmp76orlr19/{from.md → to.md} RENAMED
@@ -1,11 +1,11 @@
1
- ##### `unique_ptr` observers <a id="unique.ptr.runtime.observers">[[unique.ptr.runtime.observers]]</a>
2
 
3
  ``` cpp
4
  T& operator[](size_t i) const;
5
  ```
6
 
7
- *Requires:* `i <` the number of elements in the array to which the
8
  stored pointer points.
9
 
10
  *Returns:* `get()[i]`.
11
 
 
1
+ ##### Observers <a id="unique.ptr.runtime.observers">[[unique.ptr.runtime.observers]]</a>
2
 
3
  ``` cpp
4
  T& operator[](size_t i) const;
5
  ```
6
 
7
+ *Preconditions:* `i` < the number of elements in the array to which the
8
  stored pointer points.
9
 
10
  *Returns:* `get()[i]`.
11