···11const std = @import("std");
22const uucode = @import("uucode");
3344-/// A thin wrapper around Unicode data - no longer needs allocation with uucode
55-const Unicode = @This();
66-77-/// initialize all unicode data vaxis may possibly need
88-/// With uucode, no initialization is needed but we keep this for API compatibility
99-pub fn init(alloc: std.mem.Allocator) !Unicode {
1010- _ = alloc;
1111- return .{};
1212-}
1313-1414-/// free all data
1515-/// With uucode, no deinitialization is needed but we keep this for API compatibility
1616-pub fn deinit(self: *const Unicode, alloc: std.mem.Allocator) void {
1717- _ = self;
1818- _ = alloc;
1919-}
2020-214// Old API-compatible Grapheme value
225pub const Grapheme = struct {
236 start: usize,