std::experimental::ranges::mismatch
template< InputIterator I1, Sentinel<I1> S1, InputIterator I2, Sentinel<I2> S2, class Proj1 = ranges::identity, class Proj2 = ranges::identity, |
(1) | (范围 TS) |
template< InputRange R1, InputRange R2, class Proj1 = ranges::identity, class Proj2 = ranges::identity, |
(2) | (范围 TS) |
template< InputIterator I1, Sentinel<I1> S1, class I2, class Pred = ranges::equal_to<>, |
(3) | (范围 TS) (弃用) |
template< InputRange R1, class I2, class Pred = ranges::equal_to<>, class Proj1 = ranges::identity, class Proj2 = ranges::identity > |
(4) | (范围 TS) (弃用) |
[
first1,
last1)
定义而另一个由 [
first2,
last2)
定义。用 pred 对两个范围投射后的元素进行比较,如同调用 ranges::invoke(pred, ranges::invoke(proj1, *i), ranges::invoke(proj2, *j))。
尽管声明描述如上,算法声明的模板形参的实际数量和顺序是未指定的。从而若在调用算法时使用显式模板实参,则程序很可能不可移植。
参数
first1, last1 | - | 第一元素范围 |
r1 | - | 第一元素范围 |
first2, last2 | - | 第二元素范围 |
r2 | - | 第二元素范围 |
first2_ | - | 第二元素范围的开头 |
pred | - | 运用于投射后范围的谓词 |
proj1 | - | 运用于第一范围中元素的投射 |
proj2 | - | 运用于第二范围中元素的投射 |
返回值
tagged_pair
对象,带有指向首对不相等元素(第一范围中的迭代器具有标签 in1 而第二范围中的迭代器具有标签 in2)。
如果比较抵达 last1 或 last2 时未找到不匹配,无论哪个先发生,则对偶持有该为迭代器和另一范围的对应迭代器。
复杂度
最多 last1 - first1 次运用谓词和各投射。
可能的实现
template<InputIterator I1, Sentinel<I1> S1, InputIterator I2, Sentinel<I2> S2, class Proj1 = ranges::identity, class Proj2 = ranges::identity, class Pred = ranges::equal_to<>> requires IndirectRelation<Pred, projected<I1, Proj1>, projected<I2, Proj2>> auto mismatch(I1 first1, S1 last1, I2 first2, S2 last2, Pred pred = Pred{}, Proj1 proj1 = Proj1{}, Proj2 proj2 = Proj2{}) -> ranges::tagged_pair<tag::in1(I1), tag::in2(I2)> { while (first1 != last1 && first2 != last2 && ranges::invoke(pred, ranges::invoke(proj1, *first1), ranges::invoke(proj2, *first2))) { ++first1; ++first2; } return {first1, first2}; } |
示例
本节未完成 原因:暂无示例 |
参阅
寻找两个范围出现不同的首个位置 (函数模板) | |
确定元素的两个集合是否相同 (函数模板) | |
寻找首个满足特定判别标准的元素 (函数模板) | |
当一个范围按字典顺序小于另一个范围时,返回 true (函数模板) | |
搜索一个元素范围 (函数模板) |