add two LUT-based implementations of isSymbol

This commit is contained in:
Jeffrey C. Ollie
2025-09-04 23:04:08 -05:00
parent 968b9d536d
commit a7da96faee
13 changed files with 634 additions and 25 deletions

View File

@@ -10,6 +10,7 @@ pub const Action = enum {
@"grapheme-break",
@"terminal-parser",
@"terminal-stream",
@"is-symbol",
/// Returns the struct associated with the action. The struct
/// should have a few decls:
@@ -25,6 +26,7 @@ pub const Action = enum {
.@"codepoint-width" => @import("CodepointWidth.zig"),
.@"grapheme-break" => @import("GraphemeBreak.zig"),
.@"terminal-parser" => @import("TerminalParser.zig"),
.@"is-symbol" => @import("IsSymbol.zig"),
};
}
};