Method: Flt::FormatBase#to_hex

Defined in:
lib/float-formats/classes.rb

#to_hex(sep_bytes = false) ⇒ Object



136
137
138
139
140
141
142
# File 'lib/float-formats/classes.rb', line 136

def to_hex(sep_bytes=false)
  if (form_class.total_bits % 8)==0
    to_bytes.to_hex(sep_bytes)
  else
    to_bits.to_hex
  end
end