macro_rules! bandersnatch_experimental_enabled {
($($input:tt)*) => { ... };
}
Expand description
Enable/disable the given code depending on
feature = "bandersnatch-experimental"
being enabled for the crate or not.
ยงExample
// Will add the code depending on the feature being enabled or not.
bandersnatch_experimental_enabled!( println!("Hello") )