Class: RVM::Functions::BitwiseOr

Inherits:
Function
  • Object
show all
Defined in:
lib/rvm/functions/bitwise/bitwise_or.rb

Class Method Summary collapse

Methods inherited from Function

call, data_type, execargs, method_missing

Methods included from Plugin

#helper, #included, #plugin_host, #plugin_id, #register_for

Class Method Details

.execute(params, env) ⇒ Object



31
32
33
# File 'lib/rvm/functions/bitwise/bitwise_or.rb', line 31

def self.execute params, env
  params.shift.to_i | params.shift.to_i
end

.signatureObject



35
36
37
# File 'lib/rvm/functions/bitwise/bitwise_or.rb', line 35

def self.signature
  [:number, :number]
end