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