Packages

builtin
cbindgen
core
core.alloc
core.alloc.arena
core.alloc.atomic
core.alloc.fixed
core.alloc.gc
core.alloc.heap
core.alloc.log
core.alloc.memdebug
core.alloc.pool
core.alloc.ring
core.arg_parse
core.array
core.avl_tree
core.bucket_array
core.conv
core.doc
core.encoding
core.encoding.base64
core.encoding.csv
core.encoding.hex
core.encoding.json
core.encoding.kdl
core.encoding.osad
core.encoding.utf8
core.hash
core.hash.md5
core.hash.sha1
core.hash.sha256
core.heap
core.intrinsics
core.intrinsics.atomics
core.intrinsics.onyx
core.intrinsics.types
core.intrinsics.wasm
core.io
core.io.binary
core.iter
core.js
core.list
core.map
core.math
core.memory
core.misc
core.net
core.os
core.random
core.set
core.slice
core.string
core.sync
core.test
core.thread
core.time
main
runtime
runtime.info
runtime.platform
runtime.vars
simd

package runtime

Arch
Arch :: enum {
    Unknown :: 0;
    X86_64 :: 1;
    X86_32 :: 2;
    AARCH64 :: 3;
}
OS
OS :: enum {
    Linux :: 1;
    Windows :: 2;
    MacOS :: 3;
}
Runtime
Runtime :: enum {
    Onyx :: 1;
    Wasi :: 2;
    Js :: 3;
    Custom :: 4;
}
__assert_handler
__assert_handler :: (msg: [] u8, site: CallSite) -> void
__output_uint
__output_uint :: (n: u64) -> void
__runtime_initialize
__runtime_initialize :: () -> void
__thread_initialize
__thread_initialize :: () -> void
_thread_exit
_thread_exit :: (id: i32) -> void
_thread_start
_thread_start :: (id: i32, tls_base: rawptr, stack_base: rawptr, func: (rawptr) -> void, data: rawptr) -> void