triplers 0.1.1

library for parsing, manipulating, and serializing target triples.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
crate::triple_part! {
    Ve {
        Ve
    }

    canon(self) {
        "ve"
    }

    parse(src) {
        if prefix!("ve" src) { return Some((Ve::Ve, 2)); }
        None
    }

    bits(self) {
        64
    }
}