Trait compiler_builtins::int::LargeInt [] [src]

pub trait LargeInt {
    type LowHalf;
    type HighHalf;
    fn low(self) -> Self::LowHalf;
    fn high(self) -> Self::HighHalf;
    fn from_parts(low: Self::LowHalf, high: Self::HighHalf) -> Self;
}
🔬 This is a nightly-only experimental API.   (compiler_builtins_lib)

Compiler builtins. Will never become stable.

Trait to convert an integer to/from smaller parts

Associated Types

🔬 This is a nightly-only experimental API.   (compiler_builtins_lib)

Compiler builtins. Will never become stable.

🔬 This is a nightly-only experimental API.   (compiler_builtins_lib)

Compiler builtins. Will never become stable.

Required Methods

🔬 This is a nightly-only experimental API.   (compiler_builtins_lib)

Compiler builtins. Will never become stable.

🔬 This is a nightly-only experimental API.   (compiler_builtins_lib)

Compiler builtins. Will never become stable.

🔬 This is a nightly-only experimental API.   (compiler_builtins_lib)

Compiler builtins. Will never become stable.

Implementors