Class: Object

Inherits:
BasicObject
Defined in:
lib/mayhaps.rb

Instance Method Summary collapse

Instance Method Details

#maybeObject



4
5
6
7
8
9
10
# File 'lib/mayhaps.rb', line 4

def maybe
  if nil?
    Nothing.instance
  else
    Just.new(self)
  end
end