Last active
March 8, 2018 21:28
-
-
Save KirinDave/a173f8d2fb2c6f038c12d4a5e6676506 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
-- Simplified Fix | |
newtype Fix f = Fix (f (Fix f)) | |
-- Helper functions | |
fix :: f (Fix f) -> Fix f | |
fix = Fix | |
unfix :: Fix f -> f (Fix f) | |
unfix (Fix f) = f | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment