cleanup, docs

This commit is contained in:
root
2026-06-16 23:02:45 +00:00
parent ea08d5f28b
commit b8b56cf3dd
160 changed files with 1076 additions and 511 deletions
+4 -1
View File
@@ -13,4 +13,7 @@ UCEB1 is length-prefixed and binary-safe. It preserves nested maps, list-shaped
:example
print("ucb_encode example\n");
DValue original;
original["msg"] = "hello";
String packed = ucb_encode(original);
print("encoded ", packed.length(), " bytes; round-trips to: ", ucb_decode(packed)["msg"].to_string(), "\n");