module langitems

Expand

Lang items

Lang items are items implemented in mira, that the compiler is interested in, because those items have special meaning for the compiler. This could be for example the u64 implementation struct, the range struct, or the panic function. Most lang items are in this module.

Functions§

print_i16

Prints an i16 to stdout

print_i32

Prints an i32 to stdout

print_i64

Prints an i64 to stdout

print_i8

Prints an i8 to stdout

print_u16

Prints a u16 to stdout

print_u32

Prints a u32 to stdout

print_u64

Prints a u64 to stdout

print_u8

Prints a u8 to stdout

Structs§

bool_t

Struct that implements functions for bool

i16_t

Struct that implements functions for i16

i32_t

Struct that implements functions for i32

i64_t

Struct that implements functions for i64

i8_t

Struct that implements functions for i8

isize_t

Struct that implements functions for isize

str_t

Struct that implements functions for str_t

u16_t

Struct that implements functions for u16

u32_t

Struct that implements functions for u32

u64_t

Struct that implements functions for u64

u8_t

Struct that implements functions for u8

usize_t

Struct that implements functions for usize