helix/helix-core/src/increment/mod.rs

9 lines
148 B
Rust
Raw Normal View History

pub mod date_time;
2021-11-22 01:38:41 +08:00
pub mod number;
use crate::{Range, Tendril};
pub trait Increment {
fn increment(&self, amount: i64) -> (Range, Tendril);
}