Skip to content

Instantly share code, notes, and snippets.

@dewey92
Last active April 4, 2019 01:00
Show Gist options
  • Select an option

  • Save dewey92/c10fe20f4a0544379aedf316f8421370 to your computer and use it in GitHub Desktop.

Select an option

Save dewey92/c10fe20f4a0544379aedf316f8421370 to your computer and use it in GitHub Desktop.
Array Monoid
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