Add reflect.equal and reflect.not_equal

This commit is contained in:
gingerBill
2021-09-03 11:02:31 +01:00
parent e2f035d6ee
commit 7ed4f01d02

View File

@@ -1276,7 +1276,9 @@ as_raw_data :: proc(a: any) -> (value: rawptr, valid: bool) {
return;
}
/*
eq :: equal;
ne :: not_equal;
not_equal :: proc(a, b: any) -> bool {
return !equal(a, b);
}
@@ -1353,4 +1355,3 @@ equal :: proc(a, b: any) -> bool {
return true;
}
*/