mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
15 lines
330 B
Zig
15 lines
330 B
Zig
const mutable = @import("string_mutable.zig");
|
|
const std = @import("std");
|
|
|
|
pub usingnamespace @import("string_types.zig");
|
|
|
|
pub const strings = @import("string_immutable.zig");
|
|
|
|
pub const MutableString = mutable.MutableString;
|
|
|
|
pub const eql = std.meta.eql;
|
|
|
|
pub fn nql(a: anytype, b: @TypeOf(a)) bool {
|
|
return !eql(a, b);
|
|
}
|