1 // integer_decode_float().
16 const cl_idecoded_float integer_decode_float (const cl_SF& x)
22 SF_decode(x, { return cl_idecoded_float(0, 0, 1); },
25 return cl_idecoded_float(
26 L_to_FN(mant), // Mantisse als Fixnum (>0, <2^17)
27 L_to_FN(exp-(SF_mant_len+1)), // e-17 als Fixnum
28 (sign>=0 ? cl_I(1) : cl_I(-1)) // (-1)^s erzeugen