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

9 lines
148 B
Rust
Raw Normal View History

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