fbMAligned
Aligned alloc, calloc, free, realloc, crealloc
dim as integer ptr p = fbma_calloc(20, 64)
p[0] = 123
print p[0]
fbma_free(p)
Details:Attribution:
fbMAligned is Copyright (c) 2026- Johannes "Jattenalle" Pihl, all rights reserved
fbList
Fast arbitrary index, type-agnostic, extensible, and sortable lists
TypeList foolist Holds Integer
Dim as foolist foo
foo.EnableSort()
foo.Insert(5)
foo.Insert(3)
foo.Insert(1)
foo.Insert(2)
print foo[0]
Details:Attribution:
fbList is Copyright (c) 2023-2024 Johannes "Jattenalle" Pihl, all rights reserved
fbTimer
High performance Timer and Scheduler with up to microsecond (µs) accuracy* and fully threaded scheduling and event callback
dim as t_Timer foo
print foo.us
foo.Sleep(0.05)
print foo.us
* Actual accuracy depends on OS and hardware support at runtime
Details:Attribution:
fbTimer is Copyright (c) 2023-2024 Johannes "Jattenalle" Pihl, all rights reserved