quicksort broken

This commit is contained in:
Eric Henry 2021-04-03 12:28:06 -04:00
parent 57640e3ee0
commit 26edc70bca
2 changed files with 57 additions and 1 deletions

View file

@ -157,3 +157,9 @@ pub const RocResult = extern struct {
return !self.isOk();
}
};
pub const Ordering = enum(u8) {
EQ,
GT,
LT,
};