From 5882731a18da766941aa15d20710044a8928d9a3 Mon Sep 17 00:00:00 2001 From: yukirij Date: Tue, 15 Apr 2025 18:18:53 -0400 Subject: [PATCH] Update README.md --- README.md | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/README.md b/README.md index 534aa64..732a102 100644 --- a/README.md +++ b/README.md @@ -1,25 +1 @@ # Suzu Data System - -## Data Types - -``` -|=|{ - |& |Id |# - |`Any` |\x00 |# Untyped container - |`Var` |\x00 |# Variable type - |`Boolean` |\x01 |# Boolean - |`Byte` |\x00 |# Unsigned integer, u8 - |`Natural` |\x10 |# Unsigned integer, u64 - |`Integer` |\x11 |# Signed integer, i64 - |`Block` |\x20 |# Fixed-size byte series - |`Sequence` |\x21 |# Variable-size byte series - |`Option` |\x31 |# Optional type - |`Array` |\x32 |# Fixed-size collection - |`List` |\x33 |# Variable-size collection - |`Tuple` |\x34 |# Position-mapped collection - |`Function` |\x7c |# Unsigned integer, u32 - |`Record` |\x7d |# Abstract type instnce - |`Schema` |\x7e |# Abstract type definition - |`Type` |\x7f |# Unsigned integer, u32 -} -```