sway-core 0.71.0

Sway core language.
Documentation
1
2
3
4
5
6
/// The inline of a function suggests to the compiler whether or not a function should be inlined.
#[derive(Clone, Debug, Copy, PartialEq, Eq, Hash)]
pub enum Inline {
    Always,
    Never,
}