@@ -10289,49 +10289,49 @@
10289
10289
int fpclassify(double x);
10290
10290
int fpclassify(long double x);
10291
10291
10292
- int isfinite(float x);
10293
- int isfinite(double x);
10294
- int isfinite(long double x);
10292
+ bool isfinite(float x);
10293
+ bool isfinite(double x);
10294
+ bool isfinite(long double x);
10295
10295
10296
- int isinf(float x);
10297
- int isinf(double x);
10298
- int isinf(long double x);
10296
+ bool isinf(float x);
10297
+ bool isinf(double x);
10298
+ bool isinf(long double x);
10299
10299
10300
- int isnan(float x);
10301
- int isnan(double x);
10302
- int isnan(long double x);
10300
+ bool isnan(float x);
10301
+ bool isnan(double x);
10302
+ bool isnan(long double x);
10303
10303
10304
- int isnormal(float x);
10305
- int isnormal(double x);
10306
- int isnormal(long double x);
10304
+ bool isnormal(float x);
10305
+ bool isnormal(double x);
10306
+ bool isnormal(long double x);
10307
10307
10308
- int signbit(float x);
10309
- int signbit(double x);
10310
- int signbit(long double x);
10308
+ bool signbit(float x);
10309
+ bool signbit(double x);
10310
+ bool signbit(long double x);
10311
10311
10312
- int isgreater(float x, float y);
10313
- int isgreater(double x, double y);
10314
- int isgreater(long double x, long double y);
10312
+ bool isgreater(float x, float y);
10313
+ bool isgreater(double x, double y);
10314
+ bool isgreater(long double x, long double y);
10315
10315
10316
- int isgreaterequal(float x, float y);
10317
- int isgreaterequal(double x, double y);
10318
- int isgreaterequal(long double x, long double y);
10316
+ bool isgreaterequal(float x, float y);
10317
+ bool isgreaterequal(double x, double y);
10318
+ bool isgreaterequal(long double x, long double y);
10319
10319
10320
- int isless(float x, float y);
10321
- int isless(double x, double y);
10322
- int isless(long double x, long double y);
10320
+ bool isless(float x, float y);
10321
+ bool isless(double x, double y);
10322
+ bool isless(long double x, long double y);
10323
10323
10324
- int islessequal(float x, float y);
10325
- int islessequal(double x, double y);
10326
- int islessequal(long double x, long double y);
10324
+ bool islessequal(float x, float y);
10325
+ bool islessequal(double x, double y);
10326
+ bool islessequal(long double x, long double y);
10327
10327
10328
- int islessgreater(float x, float y);
10329
- int islessgreater(double x, double y);
10330
- int islessgreater(long double x, long double y);
10328
+ bool islessgreater(float x, float y);
10329
+ bool islessgreater(double x, double y);
10330
+ bool islessgreater(long double x, long double y);
10331
10331
10332
- int isunordered(float x, float y);
10333
- int isunordered(double x, double y);
10334
- int isunordered(long double x, long double y);
10332
+ bool isunordered(float x, float y);
10333
+ bool isunordered(double x, double y);
10334
+ bool isunordered(long double x, long double y);
10335
10335
10336
10336
// \ref {sf.cmath }, mathematical special functions
10337
10337
0 commit comments