operator==(ranges::zip_transform_view::sentinel)
來自 cppreference.com
< cpp | ranges | zip transform view | sentinel
template< bool OtherConst > requires std::sentinel_for</*zentinel*/<Const>, /*ziperator*/<OtherConst>> |
(C++23 起) | |
比較 x 的底層迭代器與 y 的底層哨位。
此函式模板對常規非限定查詢或限定查詢不可見,僅當 zip_transform_view::sentinel
是引數的關聯類時才能透過引數依賴查詢找到。
!=
運算子由 operator==
合成。
[編輯] 引數
x | - | 要比較的迭代器 |
y | - | 要比較的哨兵 |
[編輯] 返回值
x.inner_ == y.inner_,其中 inner_
分別表示底層迭代器或哨兵。
[編輯] 示例
本節不完整 原因:無示例 |