1 2 3 4 5 6 7 8
#[macro_export]
macro_rules! op_pulse {
() => {
fn op_families(&self) -> &'static [&'static str] {
&["pulse"]
}
};
}
1 2 3 4 5 6 7 8
#[macro_export]
macro_rules! op_pulse {
() => {
fn op_families(&self) -> &'static [&'static str] {
&["pulse"]
}
};
}