Method: Array#unbox

Defined in:
lib/funkr/extensions/array.rb

#unboxObject



68
69
70
71
# File 'lib/funkr/extensions/array.rb', line 68

def unbox()
  if self.empty? then nil
  else self.first end
end