ripsed-core 0.2.8

Core edit engine for ripsed — pure logic, no I/O
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod config;
pub mod diff;
pub mod engine;
pub mod error;
pub mod matcher;
pub mod operation;
pub mod script;
pub mod suggestion;
pub mod undo;

/// Serde helper: returns `true`. Used as `#[serde(default = "default_true")]`.
pub(crate) fn default_true() -> bool {
    true
}