From de96193a472fef7ce76dcb6ee299ecd87e2c996b Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Mon, 6 Jan 2025 05:52:00 +0000 Subject: [PATCH] refactor: add note for future optimization in crc impl --- lib/crc.luau | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/crc.luau b/lib/crc.luau index 549c5df..38aac2d 100644 --- a/lib/crc.luau +++ b/lib/crc.luau @@ -1,5 +1,6 @@ local CRC32_TABLE = table.create(256) +-- TODO: Maybe compute this AoT as an optimization -- Initialize the lookup table and lock it in place for i = 0, 255 do local crc = i