rbx-rsml 1.0.1

A lexer and parser for the RSML language.
Documentation
1
2
3
4
5
6
7
8
9
pub trait StringClip {
    fn clip<'a>(&'a self, start: usize, end: usize) -> &'a str;
}

impl StringClip for str {
    fn clip<'a>(&'a self, start: usize, end: usize) -> &'a str {
        &self[start..self.len() - end]
    }
}