class Hexdump::Type::UInt
Represents a unsigned integer type.
Public Class Methods
new(endian: NATIVE_ENDIAN, **kwargs)
click to toggle source
Initializes the uint type.
@param [:little, :big] endian (NATIVE_ENDIAN)
The endian-ness of the uint type.
Calls superclass method
# File lib/hexdump/type.rb, line 136 def initialize(endian: NATIVE_ENDIAN, **kwargs) super(signed: false, endian: endian, **kwargs) end