项目作者: Emoun

项目描述 :
Rust crate for eager macro expansion
高级语言: Rust
项目地址: git://github.com/Emoun/eager.git
创建时间: 2018-07-07T19:23:04Z
项目社区:https://github.com/Emoun/eager

开源协议:MIT License

下载


eager

Build Status

Rust crate for simulating eager macro expansion.

Example

  1. #[macro_use]
  2. extern crate eager;
  3. //Declare an eager macro
  4. eager_macro_rules!{ $eager_1
  5. macro_rules! plus_1{
  6. ()=>{+ 1};
  7. }
  8. }
  9. fn main(){
  10. // Use the macro inside an eager! call to expand it eagerly
  11. assert_eq!(4, eager!{2 plus_1!() plus_1!()});
  12. }

License

Licensed under the MIT license.