Method: Array#>>

Defined in:
lib/functions/shared/ext.rb

#>>(a) ⇒ Object

prepend element a to the array (self)



3
4
5
# File 'lib/functions/shared/ext.rb', line 3

def >> a
  self.unshift a
end