refactory_string 0.1.0

A library to modify a string using original indices. Useful for Source Code transformations.
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug)]
pub enum Error {
    IndexOutOfBoundError(usize),
    EssentialContentCannotBeAppended,
    EssentialContentCannotBePrepended,
    ContentShouldNotBeRemoved,
    InvalidInternalState,
}