blob: c7954792996436622563c95d883b7ec780822391 (
plain)
1
2
3
4
5
6
7
8
9
|
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,
};
}
|