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