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

9 lines
143 B
Rust
Raw Normal View History

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