gvas 0.11.0

Crate for parsing UE4 gvas save files.
Documentation
1
2
3
4
5
6
7
8
9
pub trait OrdExt<I> {
    fn between(&self, start: I, end: I) -> bool;
}

impl<I: Ord> OrdExt<I> for I {
    fn between(&self, start: I, end: I) -> bool {
        *self >= start && *self <= end
    }
}