tokyodoves 1.0.2

A library of an efficient board of Tokyo Doves and associated toolkits
Documentation
1
2
3
4
5
6
7
8
9
10
11
macro_rules! for_loop {
    (let mut $i:ident = $init:expr; $cond:expr; $next:expr => $body:block) => {
        let mut $i = $init;
        while $cond {
            $body;
            $next;
        }
    };
}

pub(crate) use for_loop;