kbvm 0.1.5

An implementation of the XKB specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
macro_rules! token {
    ($($tt:tt)*) => {
        $crate::xkb::rmlvo::token::Token::Punctuation(punctuation!($($tt)*))
    };
}

macro_rules! punctuation {
    (=) => {
        $crate::xkb::rmlvo::token::Punctuation::Equals
    };
    (*) => {
        $crate::xkb::rmlvo::token::Punctuation::Times
    };
    (!) => {
        $crate::xkb::rmlvo::token::Punctuation::Exclam
    };
}