File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 3468
3468
\effects Equivalent to: \tcode {return x.current_ == y.end_;}
3469
3469
\end {itemdescr }
3470
3470
3471
+ \indexlibrary {\idxcode {operator-}!\idxcode {transform_view::sentinel}}%
3472
+ \begin {itemdecl }
3473
+ friend constexpr iter_difference_t<iterator_t<Base>>
3474
+ operator-(const iterator<Const>& x, const sentinel& y)
3475
+ requires SizedSentinel<sentinel_t<Base>, iterator_t<Base>>;
3476
+ \end {itemdecl }
3477
+
3478
+ \begin {itemdescr }
3479
+ \pnum
3480
+ \effects Equivalent to: \tcode {return x.current_ - y.end_;}
3481
+ \end {itemdescr }
3482
+
3483
+ \indexlibrary {\idxcode {operator-}!\idxcode {transform_view::sentinel}}%
3484
+ \begin {itemdecl }
3485
+ friend constexpr iter_difference_t<iterator_t<Base>>
3486
+ operator-(const sentinel& y, const iterator<Const>& x)
3487
+ requires SizedSentinel<sentinel_t<Base>, iterator_t<Base>>;
3488
+ \end {itemdecl }
3489
+
3490
+ \begin {itemdescr }
3491
+ \pnum
3492
+ \effects Equivalent to: \tcode {return x.end_ - y.current_;}
3493
+ \end {itemdescr }
3494
+
3471
3495
\rSec 3[range.transform.adaptor]{\tcode {view::transform}}
3472
3496
3473
3497
\pnum
You can’t perform that action at this time.
0 commit comments