Source code

Revision control

Copy as Markdown

Other Tools

macro_rules! if_loom {
($($t:tt)*) => {{
#[cfg(loom)]
{
$($t)*
}
}}
}