From Jason Turner

[counted.iter.const]

Diff to HTML by rtfpessoa

tmp/tmpx3yqs5ah/{from.md → to.md} RENAMED
@@ -2,11 +2,11 @@
2
 
3
  ``` cpp
4
  constexpr counted_iterator(I i, iter_difference_t<I> n);
5
  ```
6
 
7
- *Preconditions:* `n >= 0`.
8
 
9
  *Effects:* Initializes `current` with `std::move(i)` and `length` with
10
  `n`.
11
 
12
  ``` cpp
 
2
 
3
  ``` cpp
4
  constexpr counted_iterator(I i, iter_difference_t<I> n);
5
  ```
6
 
7
+ `n >= 0` is `true`.
8
 
9
  *Effects:* Initializes `current` with `std::move(i)` and `length` with
10
  `n`.
11
 
12
  ``` cpp