E.String gets a Rope

This commit is contained in:
Jarred Sumner
2022-05-05 21:32:19 -07:00
parent 7b125c9731
commit d629cfafd6
50 changed files with 492 additions and 384 deletions

View File

@@ -5,6 +5,7 @@ const string = @import("string_types.zig").string;
const stringZ = @import("string_types.zig").stringZ;
const CodePoint = @import("string_types.zig").CodePoint;
const bun = @import("global.zig");
pub const joiner = @import("./string_joiner.zig");
const assert = std.debug.assert;
pub inline fn containsChar(self: string, char: u8) bool {
return indexOfChar(self, char) != null;