Class: Python::Pickle::Instructions::Long4

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

Overview

Note:

introduces in protocol 1.

Represents the LONG4 instruction.

Instance Attribute Summary

Attributes included from HasLengthAndValue

#length, #value

Attributes inherited from Python::Pickle::Instruction

#opcode

Instance Method Summary collapse

Methods included from HasLengthAndValue

#==, #to_s

Methods inherited from Python::Pickle::Instruction

#==, #inspect, #to_s

Constructor Details

#initialize(length, value) ⇒ Long4

Initializes the LONG4 instruction.

Parameters:

  • length (Integer)

    The length of the LONG4 value in bytes.

  • value (Long4)

    The LONG4 instruction's value.



25
26
27
# File 'lib/python/pickle/instructions/long4.rb', line 25

def initialize(length,value)
  super(:LONG4,length,value)
end