You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow the user to choose whether each rule should be implemented both normally and eagerly, just normally, or just eagerly:
eager_macro_rules!{$eager_1
macro_rules! some_macro {{// The default behaviour should be both
...
} => { ... };
@not_eager {// Does not support eager
...
} => { ... };
@only_eager{// Only supports eager, does not support non-eager
...
} => { ... };
}}
The text was updated successfully, but these errors were encountered:
Allow the user to choose whether each rule should be implemented both normally and eagerly, just normally, or just eagerly:
The text was updated successfully, but these errors were encountered: