konst_kernel/
macros.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#[macro_use]
mod control_flow;

#[cfg(feature = "iter")]
#[macro_use]
mod into_iter_macros;

#[cfg(feature = "__for_konst")]
#[macro_use]
mod internal_macros;

#[cfg(feature = "__for_konst")]
pub(crate) mod array_macros;

#[cfg(feature = "__for_konst")]
mod option_macros_;

#[cfg(feature = "__for_konst")]
mod result_macros_;