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
fbHashmap
JSON-like associative [stringkey]=value hashmap objects with file loading, saving, and more
dim as t_Hashmap foo
foo["bar"] = 123.4
foo["lii"] = "Hello, world!"
foo["soo"]["doo"] = foo[0]
Details:Attribution:
fbHashmap is Copyright (c) 2023-2024 Johannes "Jattenalle" Pihl, all rights reserved
fbNetComs
High load tolerant fully threaded network communications module and handler with dictionary-, event-, and callback- functionality
Details:OS:
Windows only
Dependencies:
fbList, fbTimer, fbHashmap
Attribution:
fbNetComs is Copyright (c) 2023-2024 Johannes "Jattenalle" Pihl, all rights reserved