Skip to content

Instantly share code, notes, and snippets.

@endgame
endgame / monoids.rb
Created January 23, 2018 23:41
Monoids in Ruby
class Monoid
attr_reader :mempty
def initialize(mempty, mappend)
@mempty = mempty
@mappend = mappend
end
def mappend(x, y)
@mappend.call(x, y)