Class: Python::Pickle::Instructions::Int

Inherits:
Python::Pickle::Instruction show all
Includes:
HasValue
Defined in:
lib/python/pickle/instructions/int.rb

Instance Attribute Summary

Attributes included from HasValue

#value

Attributes inherited from Python::Pickle::Instruction

#opcode

Instance Method Summary collapse

Methods included from HasValue

#==, #to_s

Methods inherited from Python::Pickle::Instruction

#==, #inspect, #to_s

Constructor Details

#initialize(value) ⇒ Int

Initializes the INT instruction.

Parameters:

  • value (Integer)

    The INT instruction's value.



17
18
19
# File 'lib/python/pickle/instructions/int.rb', line 17

def initialize(value)
  super(:INT,value)
end