From Jason Turner

[valarray.access]

Diff to HTML by rtfpessoa

tmp/tmphjjkmiga/{from.md → to.md} RENAMED
@@ -20,12 +20,12 @@ Likewise, the expression `&a[i] != &b[j]` evaluates as `true` for any
20
  two arrays `a` and `b` and for any `size_t i` and `size_t j` such that
21
  `i` is less than the length of `a` and `j` is less than the length of
22
  `b`. This property indicates an absence of aliasing and may be used to
23
  advantage by optimizing compilers.[^13]
24
 
25
- The reference returned by the subscript operator for an array is
26
- guaranteed to be valid until the member function
27
  `resize(size_t, T)` ([[valarray.members]]) is called for that array or
28
  until the lifetime of that array ends, whichever happens first.
29
 
30
  If the subscript operator is invoked with a `size_t` argument whose
31
  value is not less than the length of the array, the behavior is
 
20
  two arrays `a` and `b` and for any `size_t i` and `size_t j` such that
21
  `i` is less than the length of `a` and `j` is less than the length of
22
  `b`. This property indicates an absence of aliasing and may be used to
23
  advantage by optimizing compilers.[^13]
24
 
25
+ The reference returned by the subscript operator for an array shall be
26
+ valid until the member function
27
  `resize(size_t, T)` ([[valarray.members]]) is called for that array or
28
  until the lifetime of that array ends, whichever happens first.
29
 
30
  If the subscript operator is invoked with a `size_t` argument whose
31
  value is not less than the length of the array, the behavior is