]> www.ginac.de Git - cln.git/blob - src/float/lfloat/elem/cl_LF_zerop.cc
* src/float/lfloat/cl_LF.h (cl_heap_lfloat): Change len type to uintC.
[cln.git] / src / float / lfloat / elem / cl_LF_zerop.cc
1 // zerop().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/lfloat.h"
8
9
10 // Implementation.
11
12 #include "cl_LF.h"
13
14 namespace cln {
15
16 MAYBE_INLINE
17 bool zerop (const cl_LF& x)
18 {
19         return TheLfloat(x)->expo == 0;
20 }
21
22 }  // namespace cln