Merge branch 'main' into feature/new-object-system

This commit is contained in:
2025-10-15 11:13:00 +01:00
227 changed files with 8252 additions and 2129 deletions

View File

@@ -5,9 +5,15 @@
#include <blue/ds/number.h>
enum b_number_flags {
NUMBER_F_INF = 0x01u,
NUMBER_F_NAN = 0x02u,
};
struct b_number {
struct b_dsref n_base;
b_number_type n_type;
enum b_number_flags n_flags;
union {
int8_t v_int8;
int16_t v_int16;