Class: Hexdump::Type::UInt32 Private

Inherits:
UInt show all
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.

Since:

  • 1.0.0

Constant Summary

Constants inherited from Hexdump::Type

NATIVE_ENDIAN

Instance Attribute Summary

Attributes inherited from Hexdump::Type

#endian, #size

Instance Method Summary collapse

Methods inherited from Hexdump::Type

#signed?, #unsigned?

Constructor Details

#initialize(**kwargs) ⇒ UInt32

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.

Returns a new instance of UInt32.

See Also:

Since:

  • 1.0.0



170
171
172
# File 'lib/hexdump/type.rb', line 170

def initialize(**kwargs)
  super(size: 4, **kwargs)
end