MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / Int

Enum Int

cranelift/codegen/meta/src/shared/types.rs:4–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2
3#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
4pub(crate) enum Int {
5 /// 8-bit int.
6 I8 = 8,
7 /// 16-bit int.
8 I16 = 16,
9 /// 32-bit int.
10 I32 = 32,
11 /// 64-bit int.
12 I64 = 64,
13 /// 128-bit int.
14 I128 = 128,
15}
16
17/// This provides an iterator through all of the supported int variants.
18pub(crate) struct IntIterator {

Callers 6

sema.rsFile · 0.85
next_tokenMethod · 0.85
mapMethod · 0.85
int_from_bitsMethod · 0.85
fromMethod · 0.85
test_typevar_singletonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected