| #[macro_export] |
| macro_rules! c_conditional { |
| (if $condition:expr => { $($if_block:tt)* } $(else if $elif_condition:expr => { $($elif_block:tt)* })* $(else => { $($else_block:tt)* })?) => { |
| if $condition { |
| $($if_block)* |
| } |
| $(else if $elif_condition { |
| $($elif_block)* |
| })* |
| $(else { |
| $($else_block)* |
| })? |
| }; |
| } |
| |
| |
| const F_ABCD: bool = true; |
| const ABCD: i32 = 1; |
| const F_DCBA: bool = true; |
| const DCBA: i32 = 2; |
| const F_DDD: bool = false; |
| |
| |
| fn test_macro() { |
| c_conditional!( |
| if F_ABCD == true => { |
| println!("F_ABCD is true"); |
| } |
| else => { |
| println!("F_ABCD is false"); |
| } |
| ); |
| |
| c_conditional!( |
| if !(F_DCBA == true) => { |
| println!("F_DCBA is false"); |
| } |
| else if F_ABCD == true && ABCD == 3 => { |
| println!("F_ABCD is true and ABCD is 3"); |
| } |
| else => { |
| println!("F_ABCD is true but ABCD is not 3"); |
| } |
| ); |
| |
| c_conditional!( |
| if F_ABCD == true && ABCD == 1 || F_DCBA == true && DCBA == 2 => { |
| println!("F_ABCD is true and ABCD is 1 or F_DCBA is true and DCBA is 2"); |
| } |
| else => { |
| println!("F_ABCD is false or ABCD is not 1 and F_DCBA is false or DCBA is not 2"); |
| } |
| ); |
| |
| c_conditional!( |
| if !(F_DDD == true) && F_ABCD == true && ABCD == 1 || F_DCBA == true && DCBA == 2 => { |
| println!("F_DDD is false and F_ABCD is true and ABCD is 1 or F_DCBA is true and DCBA is 2"); |
| } |
| else if F_DCBA == true && DCBA == 3 => { |
| println!("F_DDD is false and F_DCBA is true and DCBA is 3"); |
| } |
| else => { |
| println!("F_DDD is true or F_ABCD is false or ABCD is not 1 and F_DCBA is false or DCBA is not 2 or 3"); |
| } |
| ); |
| |
| c_conditional!( |
| if !(F_ABCD == true) => { |
| println!("F_ABCD is false"); |
| } |
| else if F_ABCD == true && ABCD == 3 => { |
| println!("F_ABCD is true and ABCD is 3"); |
| } |
| else => { |
| println!("F_ABCD is true and ABCD is not 3"); |
| } |
| ); |
| |
| c_conditional!( |
| if !(F_ABCD == true) => { |
| c_conditional!( |
| if !(F_ABCD == true) => { |
| println!("F_ABCD is false"); |
| } |
| else if F_ABCD == true && ABCD == 3 => { |
| println!("F_ABCD is true and ABCD is 3"); |
| } |
| else => { |
| println!("F_ABCD is true and ABCD is not 3"); |
| } |
| ); |
| } |
| else if F_ABCD == true && ABCD == 3 => { |
| println!("F_ABCD is true and ABCD is 3"); |
| } |
| else => { |
| println!("111"); |
| c_conditional!( |
| if !(F_ABCD == true) => { |
| println!("F_ABCD is false"); |
| } |
| else if F_ABCD == true && ABCD == 3 => { |
| println!("F_ABCD is true and ABCD is 3"); |
| } |
| else => { |
| println!("000000 F_ABCD is true and ABCD is not 3"); |
| } |
| ); |
| } |
| ); |
| } |
| |
| |
| fn main() { |
| test_macro(); |
| } |
| |
| |
| F_ABCD is true |
| F_ABCD is true but ABCD is not 3 |
| F_ABCD is true and ABCD is 1 or F_DCBA is true and DCBA is 2 |
| F_DDD is false and F_ABCD is true and ABCD is 1 or F_DCBA is true and DCBA is 2 |
| F_ABCD is true and ABCD is not 3 |
| 111 |
| 000000 F_ABCD is true and ABCD is not 3 |
| */ |