-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
what is a monoid #8
Comments
Agreed. Care to PR? |
no. i dont understand the concept of monoids and semigroups |
Got it. Until we add the docs I suggest to check out the Haskell or PureScript docs on those concepts: |
is it basically something that has |
That would be Monad :) Monoid is a binary operation (function on two arguments) equipped with identity value (a neutral value in regards to the binary operation). Here's a few examples of practical monoids:
This is an extremely universal abstraction and it allows you to apply the same patterns in composition of seemingly completely unrelated things. |
the documentation needs to explain what a monoid/semigroup is
The text was updated successfully, but these errors were encountered: