MCPcopy Create free account
hub / github.com/bnjbvr/trinity / Sys

Class Sys

java-module/Sys.java:11–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9import org.teavm.interop.Export;
10
11public final class Sys {
12 private Sys() {}
13
14 @Import(name = "rand-u64", module = "sys")
15 private static native long wasmImportRandU64();
16
17 public static long randU64() {
18 long result = wasmImportRandU64();
19 return result;
20
21 }
22
23}
24

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected