mirror of
https://github.com/danbulant/nushell
synced 2026-05-23 06:19:25 +00:00
Change helper method visibility
This commit is contained in:
parent
9e7e8ed48f
commit
4e443b2088
1 changed files with 2 additions and 2 deletions
|
|
@ -104,11 +104,11 @@ impl Range {
|
|||
})
|
||||
}
|
||||
|
||||
pub fn moves_up(&self) -> bool {
|
||||
fn moves_up(&self) -> bool {
|
||||
self.from <= self.to
|
||||
}
|
||||
|
||||
pub fn is_end_inclusive(&self) -> bool {
|
||||
fn is_end_inclusive(&self) -> bool {
|
||||
matches!(self.inclusion, RangeInclusion::Inclusive)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue