indexed_string 0.1.0

A naive implementation for rust's string to support index, works with unicode in O(n) time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

pub(crate) mod indexing;

pub(crate) mod range;

pub mod indexed_string;





#[cfg(test)]
mod indexing_test;

#[cfg(test)]
mod indexed_string_test;