Function getAutoEqlFn [src]
Prototype
pub fn getAutoEqlFn(comptime K: type, comptime Context: type) (fn (Context, K, K) bool)
Parameters
K: type
Context: type
Source
pub fn getAutoEqlFn(comptime K: type, comptime Context: type) (fn (Context, K, K) bool) {
return struct {
fn eql(ctx: Context, a: K, b: K) bool {
_ = ctx;
return std.meta.eql(a, b);
}
}.eql;
}