Macro mpstthree::create_normal_name

source ·
macro_rules! create_normal_name {
    ($name:ident) => { ... };
}
Available on crate feature macros_simple only.
Expand description

Create a new Name.

§Arguments

  • The name of the new Name

§Example

use mpstthree::create_normal_name;

// Create the name *A*
create_normal_name!(A);

This macro is available only if MultiCrusty is built with the "macros_simple" feature.