Class: Python::Pickle::Instructions::Long

Inherits:
Python::Pickle::Instruction show all
Includes:
HasValue
Defined in:
lib/python/pickle/instructions/long.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) ⇒ Long

Initializes the LONG instruction.

Parameters:

  • value (Integer)

    The LONG instruction's value.



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

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