Created
April 20, 2020 06:34
-
-
Save okram/f23902ce429df92677b27faa984cfc61 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
// -< [split] | |
// >- [merge] | |
// [x|y] co-product | |
// variants are "choose"-branching structures | |
mmlang> 10-<[bool|int] | |
==>[|10] | |
mmlang> true-<[bool|int] | |
==>[true|] | |
// unions don't preserve branch source | |
mmlang> 10-<[bool|int]>- | |
==>10 | |
mmlang> true-<[bool|int]>- | |
==>true |
Author
okram
commented
Apr 20, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment