mirror of https://github.com/helix-editor/helix
9 lines
143 B
Rust
9 lines
143 B
Rust
|
pub mod date;
|
||
|
pub mod number;
|
||
|
|
||
|
use crate::{Range, Tendril};
|
||
|
|
||
|
pub trait Increment {
|
||
|
fn increment(&self, amount: i64) -> (Range, Tendril);
|
||
|
}
|