class Hexdump::Type::Float

Represents a floating point type.

Public Class Methods

new(endian: NATIVE_ENDIAN, **kwargs) click to toggle source

Initializes the float type.

@param [:little, :big] endian (NATIVE_ENDIAN)

The endian-ness of the float type.
Calls superclass method
# File lib/hexdump/type.rb, line 209
def initialize(endian: NATIVE_ENDIAN, **kwargs)
  super(signed: true, endian: endian, **kwargs)
end