refactory_string 0.1.4

A library to modify a string using original indices. Useful for Source Code transformations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate alloc;

mod chunk;
mod chunk_list;
mod error;
mod refactory_string;

pub use crate::refactory_string::*;

// Tests
mod chunk_test;
mod refactory_string_own_test;
mod refactory_string_test;