MCPcopy Create free account
hub / github.com/bluejekyll/wasmtime-java / I32

Class I32

src/main/java/net/bluejekyll/wasmtime/ty/I32.java:3–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package net.bluejekyll.wasmtime.ty;
2
3public class I32 implements WasmType {
4 public final int field;
5
6 public I32(int field) {
7 this.field = field;
8 }
9
10 @Override
11 public Integer getField() {
12 return this.field;
13 }
14
15 public int intValue() {
16 return this.field;
17 }
18}

Callers 4

from_javaFunction · 0.85
from_jvalueFunction · 0.85
alloc_sizeMethod · 0.85
dealloc_bytesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected