const std = @import("std"); const Cursor = @import("../cursor.zig").Cursor; pub fn Context(comptime I: type) type { return struct { cursor: Cursor(I), allocator: std.mem.Allocator, }; }