Searched refs:cmp_fn (Results 1 – 2 of 2) sorted by relevance
/external/rust/crates/itertools/src/ |
D | merge_join.rs | 11 pub fn merge_join_by<I, J, F>(left: I, right: J, cmp_fn: F) in merge_join_by() 20 cmp_fn, in merge_join_by() 31 cmp_fn: F field 41 clone_fields!(left, right, cmp_fn); 68 match (self.cmp_fn)(&left, &right) { in next() 107 match (self.cmp_fn)(&left, &right) { in count() 133 previous_element = match (self.cmp_fn)(&left, &right) { in last() 159 (Some(left), Some(right)) => match (self.cmp_fn)(&left, &right) { in nth()
|
D | lib.rs | 909 fn merge_join_by<J, F>(self, other: J, cmp_fn: F) -> MergeJoinBy<Self, J::IntoIter, F> in merge_join_by() 914 merge_join_by(self, other, cmp_fn) in merge_join_by()
|