2017-02-21から1日間の記事一覧

Macros

https://doc.rust-lang.org/book/macros.html マクロ。 /* vec!と同じ働きをするマクロ定義 */ macro_rules! myvec { ( $( $x:expr ),* ) => { { let mut temp_vec = Vec::new(); $( temp_vec.push($x); )* temp_vec } }; } macro_rules! o_O { ( $( $x:expr…