Created
May 5, 2014 18:56
-
-
Save aamedina/c1997412e423ea1393bf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| (defprotocol Typeable) | |
| (defprotocol Read) | |
| (defprotocol Show) | |
| (defprotocol Ord) | |
| (defprotocol Enumerable) | |
| (defprotocol Bounded) | |
| (defprotocol Eq) | |
| (deftype Bool [true?] | |
| Typeable | |
| Read | |
| Show | |
| Ord | |
| Enumerable | |
| Bounded) | |
| (deftype Char [encoding] | |
| Read | |
| Show | |
| Eq | |
| Ord | |
| Enumerable | |
| Bounded) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment