Class: Python::Pickle::Instructions::Get
- Inherits:
-
Python::Pickle::Instruction
- Object
- Python::Pickle::Instruction
- Python::Pickle::Instructions::Get
- Includes:
- HasValue
- Defined in:
- lib/python/pickle/instructions/get.rb
Overview
Represents the GET
instruction.
Instance Attribute Summary
Attributes included from HasValue
Attributes inherited from Python::Pickle::Instruction
Instance Method Summary collapse
-
#initialize(value) ⇒ Get
constructor
Initializes the
GET
instruction.
Methods included from HasValue
Methods inherited from Python::Pickle::Instruction
Constructor Details
#initialize(value) ⇒ Get
Initializes the GET
instruction.
20 21 22 |
# File 'lib/python/pickle/instructions/get.rb', line 20 def initialize(value) super(:GET,value) end |