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