Tracking issue for iter_order_by · Issue #64295 · rust-lang/rust (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

@KodrAus

Description

@KodrAus

Landed in #62205

Public API

pub mod core { pub mod iter { mod traits { mod iterator { pub trait Iterator { fn cmp_by<I, F>(mut self, other: I, mut cmp: F) -> Ordering where Self: Sized, I: IntoIterator, F: FnMut(Self::Item, I::Item) -> Ordering, { } fn partial_cmp_by<I, F>( mut self, other: I, mut partial_cmp: F, ) -> Option where Self: Sized, I: IntoIterator, F: FnMut(Self::Item, I::Item) -> Option, { } fn eq_by<I, F>(mut self, other: I, mut eq: F) -> bool where Self: Sized, I: IntoIterator, F: FnMut(Self::Item, I::Item) -> bool, { } } } } } }

Before stabilization:

Open questions