Last active
April 4, 2019 01:00
-
-
Save dewey92/c10fe20f4a0544379aedf316f8421370 to your computer and use it in GitHub Desktop.
Array Monoid
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
| const array = createMonoid({ | |
| indentity: [], | |
| semigroup: (a, b) => a.concat(b), | |
| }); | |
| log(array.id) // => [] | |
| log(array.append([1], [2])) // => [1, 2] | |
| log(array.append([1, 2], array.id)) // => [1, 2] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment