Class: Python::Pickle::Instructions::BinFloat
- Inherits:
-
Python::Pickle::Instruction
- Object
- Python::Pickle::Instruction
- Python::Pickle::Instructions::BinFloat
- Includes:
- HasValue
- Defined in:
- lib/python/pickle/instructions/bin_float.rb
Overview
Note:
introduces in protocol 1.
Represents the BINFLOAT
instruction.
Instance Attribute Summary
Attributes included from HasValue
Attributes inherited from Python::Pickle::Instruction
Instance Method Summary collapse
-
#initialize(value) ⇒ BinFloat
constructor
Initializes the
BINFLOAT
instruction.
Methods included from HasValue
Methods inherited from Python::Pickle::Instruction
Constructor Details
#initialize(value) ⇒ BinFloat
Initializes the BINFLOAT
instruction.
22 23 24 |
# File 'lib/python/pickle/instructions/bin_float.rb', line 22 def initialize(value) super(:BINFLOAT,value) end |