DEV Community

Discussion on: What is the "<>" operator called in Elixir?

Collapse
 
bootcode profile image
Robin Palotai • Edited

In Haskell, this would be called "mappend", for Monoid append.

(Actually it's Semigroup append, but don't let that bother you)

Collapse
 
michael profile image
Michael Lee 🍕

Thanks Robin for sharing!