]> www.ginac.de Git - cln.git/blob - src/float/transcendental/cl_F_exp1.cc
56a679e7b8791a3a872b20a128a86922142371b2
[cln.git] / src / float / transcendental / cl_F_exp1.cc
1 // cl_exp1().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_float.h"
8
9
10 // Implementation.
11
12 #include "cl_F_tran.h"
13 #include "cl_F.h"
14 #include "cl_LF.h"
15
16 const cl_F cl_exp1 (const cl_F& y)
17 {
18         floattypecase(y
19         ,       return cl_SF_exp1;
20         ,       return cl_FF_exp1;
21         ,       return cl_DF_exp1;
22         ,       return cl_exp1(TheLfloat(y)->len);
23         );
24 }