macro_rules! gridbool_create {
    ($sqrid: ty) => { ... };
}
Expand description

Helper macro for Gridbool type creation.

More often than not we want to create a grid form an associated super::base::Sqrid type. This macros makes the process easier.

Example usage:

type Sqrid = sqrid::sqrid_create!(3, 3, false);
type Gridbool = sqrid::gridbool_create!(Sqrid);