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