Skip to content

Commit f24d86d

Browse files
authored
[range.subrange.general, range.adaptors] Use "present only if" (#6146)
1 parent ae8ec6f commit f24d86d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/ranges.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1830,7 +1830,7 @@
18301830
I @\exposid{begin_}@ = I(); // \expos
18311831
S @\exposid{end_}@ = S(); // \expos
18321832
@\exposidnc{make-unsigned-like-t}@<iter_difference_t<I>> @\exposid{size_}@ = 0; // \expos; present only
1833-
// when \exposid{StoreSize} is \tcode{true}
1833+
// if \exposid{StoreSize} is \tcode{true}
18341834
public:
18351835
subrange() requires @\libconcept{default_initializable}@<I> = default;
18361836

@@ -6463,7 +6463,7 @@
64636463
@\exposidnc{non-propagating-cache}@<iterator_t<V>> @\exposidnc{outer_}@; // \expos, present only
64646464
// when \tcode{!\libconcept{forward_range}<V>}
64656465
@\exposidnc{non-propagating-cache}@<remove_cv_t<@\exposidnc{InnerRng}@>> @\exposid{inner_}@; // \expos, present only
6466-
// when \tcode{!is_reference_v<\exposid{InnerRng}>}
6466+
// if \tcode{is_reference_v<\exposid{InnerRng}>} is \tcode{false}
64676467

64686468
public:
64696469
join_view() requires @\libconcept{default_initializable}@<V> = default;
@@ -6999,7 +6999,7 @@
69996999
@\exposid{non-propagating-cache}@<iterator_t<V>> @\exposid{outer_it_}@; // \expos, present only
70007000
// when \tcode{!\libconcept{forward_range}<V>}
70017001
@\exposid{non-propagating-cache}@<remove_cv_t<@\exposid{InnerRng}@>> @\exposid{inner_}@; // \expos, present only
7002-
// when \tcode{!is_reference_v<\exposid{InnerRng}>}
7002+
// if \tcode{is_reference_v<\exposid{InnerRng}>} is \tcode{false}
70037003
Pattern @\exposid{pattern_}@ = Pattern(); // \expos
70047004

70057005
// \ref{range.join.with.iterator}, class template \tcode{join_with_view::\exposid{iterator}}
@@ -7619,7 +7619,7 @@
76197619
Pattern @\exposid{pattern_}@ = Pattern(); // \expos
76207620

76217621
@\exposidnc{non-propagating-cache}@<iterator_t<V>> @\exposid{current_}@; // \expos, present only
7622-
// if \tcode{!\libconcept{forward_range}<V>}
7622+
// if \tcode{\libconcept{forward_range}<V>} is \tcode{false}
76237623

76247624
// \ref{range.lazy.split.outer}, class template \tcode{lazy_split_view::\exposid{outer-iterator}}
76257625
template<bool> struct @\exposidnc{outer-iterator}@; // \expos

0 commit comments

Comments
 (0)