Class: Hexdump::Type::Float Private
- Inherits:
-
Hexdump::Type
- Object
- Hexdump::Type
- Hexdump::Type::Float
- Defined in:
- lib/hexdump/type.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Represents a floating point type.
Constant Summary
Constants inherited from Hexdump::Type
Instance Attribute Summary
Attributes inherited from Hexdump::Type
Instance Method Summary collapse
-
#initialize(endian: NATIVE_ENDIAN, **kwargs) ⇒ Float
constructor
private
Initializes the float type.
Methods inherited from Hexdump::Type
Constructor Details
#initialize(endian: NATIVE_ENDIAN, **kwargs) ⇒ Float
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Initializes the float type.
210 211 212 |
# File 'lib/hexdump/type.rb', line 210 def initialize(endian: NATIVE_ENDIAN, **kwargs) super(signed: true, endian: endian, **kwargs) end |