Top Level Namespace

Defined Under Namespace

Modules: Spiel

Instance Method Summary collapse

Instance Method Details

#Maybe(object) ⇒ Object



43
44
45
# File 'lib/spiel/maybe.rb', line 43

def Maybe(object)
  object.nil? ? Spiel::Nothing : Spiel::Just.new(object)
end