Macro mpstthree::create_multiple_normal_role_short[][src]

macro_rules! create_multiple_normal_role_short {
    ($($role_name : ident), + $(,) ?) => { ... };
}
Expand description

Create multiple new mpstthree::role::Role and its dual. When a name X is given, the Roles created are

  • RoleX
  • RoleXDual

If you want to specify other names, please use mpstthree::create_multiple_normal_role.

Arguments

Example

use mpstthree::create_multiple_normal_role_short;

create_multiple_normal_role_short!(A, B, C);