Class: Decrement

Inherits:
Op
  • Object
show all
Defined in:
lib/jop.rb

Constant Summary collapse

REP =
'<:'

Instance Method Summary collapse

Methods inherited from Op

#apply_monad_deep, #integer_args, #numeric_literal?, #to_numeric

Instance Method Details

#run(ary, interpreter) ⇒ Object



50
51
52
# File 'lib/jop.rb', line 50

def run ary, interpreter
  apply_monad_deep(ary) {|e| e - 1 }
end