Class: Python::Pickle::Instructions::Get

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

Overview

Represents the GET instruction.

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) ⇒ Get

Initializes the GET instruction.

Parameters:

  • value (Integer)

    The GET instruction's value.



20
21
22
# File 'lib/python/pickle/instructions/get.rb', line 20

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