Class: Hexdump::Type::Int Private
- Inherits:
-
Hexdump::Type
- Object
- Hexdump::Type
- Hexdump::Type::Int
- 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 signed integer 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) ⇒ Int
constructor
private
Initializes the int type.
Methods inherited from Hexdump::Type
Constructor Details
#initialize(endian: NATIVE_ENDIAN, **kwargs) ⇒ Int
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 int type.
76 77 78 |
# File 'lib/hexdump/type.rb', line 76 def initialize(endian: NATIVE_ENDIAN, **kwargs) super(signed: true, endian: endian, **kwargs) end |