Created
March 27, 2022 18:58
-
-
Save fogfish/a75c80810aa3ae84fe3af03de9ab1e97 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ord | |
/* | |
Ord : T ⟼ T ⟼ Ordering | |
Each type implements compare rules, mapping pair of value to enum{ LT, EQ, GT } | |
*/ | |
type Ord [T any] interface { | |
Eq[T] | |
Compare(T, T) Ordering | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment