mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 12:04:39 +08:00
4d4ef7fa40
This removes IsOkAnd and the is_some_and method. I cannot actually find is_none_or in the stdlib? I've kept the trait name to avoid changing it now and then later, maybe this should be moved elsewhere to avoid claiming it's an stdlib thing?
36 lines
967 B
Rust
36 lines
967 B
Rust
//! stdlib backports
|
|
|
|
pub trait IsSomeAnd {
|
|
type Type;
|
|
#[allow(clippy::wrong_self_convention)]
|
|
fn is_none_or(self, s: impl FnOnce(Self::Type) -> bool) -> bool;
|
|
}
|
|
impl<T> IsSomeAnd for Option<T> {
|
|
type Type = T;
|
|
fn is_none_or(self, f: impl FnOnce(T) -> bool) -> bool {
|
|
match self {
|
|
Some(v) => f(v),
|
|
None => true,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub trait IsSorted {
|
|
type T;
|
|
fn is_sorted_by(&self, pred: impl Fn(&Self::T, &Self::T) -> Option<std::cmp::Ordering>)
|
|
-> bool;
|
|
}
|
|
impl<T> IsSorted for &[T] {
|
|
type T = T;
|
|
fn is_sorted_by(&self, pred: impl Fn(&T, &T) -> Option<std::cmp::Ordering>) -> bool {
|
|
self.windows(2)
|
|
.all(|w| pred(&w[0], &w[1]).is_none_or(|order| order.is_le()))
|
|
}
|
|
}
|
|
impl<T> IsSorted for Vec<T> {
|
|
type T = T;
|
|
fn is_sorted_by(&self, pred: impl Fn(&T, &T) -> Option<std::cmp::Ordering>) -> bool {
|
|
IsSorted::is_sorted_by(&self.as_slice(), pred)
|
|
}
|
|
}
|