aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/increment/mod.rs
blob: 71a1f183383963971a05cb564b5ad3644e91c3a5 (plain) (blame)
1
2
3
4
5
6
7
8
pub mod date;
pub mod number;

use crate::{Range, Tendril};

pub trait Increment {
    fn increment(&self, amount: i64) -> (Range, Tendril);
}