You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
526 B
33 lines
526 B
// float_exponent().
|
|
|
|
// General includes.
|
|
#include "cl_sysdep.h"
|
|
|
|
// Specification.
|
|
#include "cln/float.h"
|
|
|
|
|
|
// Implementation.
|
|
|
|
#include "cl_F.h"
|
|
|
|
#undef MAYBE_INLINE
|
|
#define MAYBE_INLINE inline
|
|
#include "cl_SF_exponent.cc"
|
|
#include "cl_FF_exponent.cc"
|
|
#include "cl_DF_exponent.cc"
|
|
#include "cl_LF_exponent.cc"
|
|
|
|
namespace cln {
|
|
|
|
sintL float_exponent (const cl_F& x)
|
|
{
|
|
floatcase(x
|
|
, return float_exponent(x);
|
|
, return float_exponent(x);
|
|
, return float_exponent(x);
|
|
, return float_exponent(x);
|
|
);
|
|
}
|
|
|
|
} // namespace cln
|