aboutsummaryrefslogtreecommitdiff
path: root/src/strings.zig
blob: 4813c1f917b875d979b3b5fc6552687f8d10fcee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
}