Function use_sorted_by

Source
pub fn use_sorted_by<S, I, T, F>(iterable: S, cmp_fn: F) -> Signal<I>
where S: Into<Signal<I>>, I: DerefMut<Target = [T]> + Clone + PartialEq + Send + Sync + 'static, F: FnMut(&T, &T) -> Ordering + Clone + Send + Sync + 'static,
Expand description

Version of use_sorted with a compare function.