forked from extern/nushell
bump to the latest rust version (#15483)
# Description This PR bumps nushell to use the latest rust version 1.84.1.
This commit is contained in:
@ -71,7 +71,7 @@ impl Default for DataFrameValue {
|
||||
|
||||
impl PartialEq for DataFrameValue {
|
||||
fn eq(&self, other: &Self) -> bool {
|
||||
self.0.partial_cmp(&other.0).map_or(false, Ordering::is_eq)
|
||||
self.0.partial_cmp(&other.0).is_some_and(Ordering::is_eq)
|
||||
}
|
||||
}
|
||||
impl Eq for DataFrameValue {}
|
||||
|
Reference in New Issue
Block a user