@@ -307,6 +307,7 @@ long double truncl(long double x);
307
307
extern " C++" {
308
308
309
309
#include < type_traits>
310
+ #include < limits>
310
311
311
312
// signbit
312
313
@@ -324,22 +325,50 @@ __libcpp_signbit(_A1 __lcpp_x) _NOEXCEPT
324
325
325
326
template <class _A1 >
326
327
inline _LIBCPP_INLINE_VISIBILITY
327
- typename std::enable_if<std::is_arithmetic <_A1>::value, bool >::type
328
+ typename std::enable_if<std::is_floating_point <_A1>::value, bool >::type
328
329
signbit (_A1 __lcpp_x) _NOEXCEPT
329
330
{
330
331
return __libcpp_signbit ((typename std::__promote<_A1>::type)__lcpp_x);
331
332
}
332
333
334
+ template <class _A1 >
335
+ inline _LIBCPP_INLINE_VISIBILITY
336
+ typename std::enable_if<
337
+ std::is_integral<_A1>::value && std::is_signed<_A1>::value, bool >::type
338
+ signbit (_A1 __lcpp_x) _NOEXCEPT
339
+ { return __lcpp_x < 0 ; }
340
+
341
+ template <class _A1 >
342
+ inline _LIBCPP_INLINE_VISIBILITY
343
+ typename std::enable_if<
344
+ std::is_integral<_A1>::value && !std::is_signed<_A1>::value, bool >::type
345
+ signbit (_A1) _NOEXCEPT
346
+ { return false ; }
347
+
333
348
#elif defined(_LIBCPP_MSVCRT)
334
349
335
350
template <typename _A1>
336
351
inline _LIBCPP_INLINE_VISIBILITY
337
- typename std::enable_if<std::is_arithmetic <_A1>::value, bool >::type
352
+ typename std::enable_if<std::is_floating_point <_A1>::value, bool >::type
338
353
signbit (_A1 __lcpp_x) _NOEXCEPT
339
354
{
340
355
return ::signbit (static_cast <typename std::__promote<_A1>::type>(__lcpp_x));
341
356
}
342
357
358
+ template <class _A1 >
359
+ inline _LIBCPP_INLINE_VISIBILITY
360
+ typename std::enable_if<
361
+ std::is_integral<_A1>::value && std::is_signed<_A1>::value, bool >::type
362
+ signbit (_A1 __lcpp_x) _NOEXCEPT
363
+ { return __lcpp_x < 0 ; }
364
+
365
+ template <class _A1 >
366
+ inline _LIBCPP_INLINE_VISIBILITY
367
+ typename std::enable_if<
368
+ std::is_integral<_A1>::value && !std::is_signed<_A1>::value, bool >::type
369
+ signbit (_A1) _NOEXCEPT
370
+ { return false ; }
371
+
343
372
#endif // signbit
344
373
345
374
// fpclassify
@@ -358,22 +387,34 @@ __libcpp_fpclassify(_A1 __lcpp_x) _NOEXCEPT
358
387
359
388
template <class _A1 >
360
389
inline _LIBCPP_INLINE_VISIBILITY
361
- typename std::enable_if<std::is_arithmetic <_A1>::value, int >::type
390
+ typename std::enable_if<std::is_floating_point <_A1>::value, int >::type
362
391
fpclassify (_A1 __lcpp_x) _NOEXCEPT
363
392
{
364
393
return __libcpp_fpclassify ((typename std::__promote<_A1>::type)__lcpp_x);
365
394
}
366
395
396
+ template <class _A1 >
397
+ inline _LIBCPP_INLINE_VISIBILITY
398
+ typename std::enable_if<std::is_integral<_A1>::value, int >::type
399
+ fpclassify (_A1 __lcpp_x) _NOEXCEPT
400
+ { return __lcpp_x == 0 ? FP_ZERO : FP_NORMAL; }
401
+
367
402
#elif defined(_LIBCPP_MSVCRT)
368
403
369
404
template <typename _A1>
370
405
inline _LIBCPP_INLINE_VISIBILITY
371
- typename std::enable_if<std::is_arithmetic <_A1>::value, int >::type
406
+ typename std::enable_if<std::is_floating_point <_A1>::value, bool >::type
372
407
fpclassify (_A1 __lcpp_x) _NOEXCEPT
373
408
{
374
409
return ::fpclassify (static_cast <typename std::__promote<_A1>::type>(__lcpp_x));
375
410
}
376
411
412
+ template <class _A1 >
413
+ inline _LIBCPP_INLINE_VISIBILITY
414
+ typename std::enable_if<std::is_integral<_A1>::value, int >::type
415
+ fpclassify (_A1 __lcpp_x) _NOEXCEPT
416
+ { return __lcpp_x == 0 ? FP_ZERO : FP_NORMAL; }
417
+
377
418
#endif // fpclassify
378
419
379
420
// isfinite
@@ -392,12 +433,22 @@ __libcpp_isfinite(_A1 __lcpp_x) _NOEXCEPT
392
433
393
434
template <class _A1 >
394
435
inline _LIBCPP_INLINE_VISIBILITY
395
- typename std::enable_if<std::is_arithmetic<_A1>::value, bool >::type
436
+ typename std::enable_if<
437
+ std::is_arithmetic<_A1>::value && std::numeric_limits<_A1>::has_infinity,
438
+ bool >::type
396
439
isfinite (_A1 __lcpp_x) _NOEXCEPT
397
440
{
398
441
return __libcpp_isfinite ((typename std::__promote<_A1>::type)__lcpp_x);
399
442
}
400
443
444
+ template <class _A1 >
445
+ inline _LIBCPP_INLINE_VISIBILITY
446
+ typename std::enable_if<
447
+ std::is_arithmetic<_A1>::value && !std::numeric_limits<_A1>::has_infinity,
448
+ bool >::type
449
+ isfinite (_A1) _NOEXCEPT
450
+ { return true ; }
451
+
401
452
#endif // isfinite
402
453
403
454
// isinf
@@ -416,12 +467,22 @@ __libcpp_isinf(_A1 __lcpp_x) _NOEXCEPT
416
467
417
468
template <class _A1 >
418
469
inline _LIBCPP_INLINE_VISIBILITY
419
- typename std::enable_if<std::is_arithmetic<_A1>::value, bool >::type
470
+ typename std::enable_if<
471
+ std::is_arithmetic<_A1>::value && std::numeric_limits<_A1>::has_infinity,
472
+ bool >::type
420
473
isinf (_A1 __lcpp_x) _NOEXCEPT
421
474
{
422
475
return __libcpp_isinf ((typename std::__promote<_A1>::type)__lcpp_x);
423
476
}
424
477
478
+ template <class _A1 >
479
+ inline _LIBCPP_INLINE_VISIBILITY
480
+ typename std::enable_if<
481
+ std::is_arithmetic<_A1>::value && !std::numeric_limits<_A1>::has_infinity,
482
+ bool >::type
483
+ isinf (_A1) _NOEXCEPT
484
+ { return false ; }
485
+
425
486
#endif // isinf
426
487
427
488
// isnan
@@ -440,12 +501,18 @@ __libcpp_isnan(_A1 __lcpp_x) _NOEXCEPT
440
501
441
502
template <class _A1 >
442
503
inline _LIBCPP_INLINE_VISIBILITY
443
- typename std::enable_if<std::is_arithmetic <_A1>::value, bool >::type
504
+ typename std::enable_if<std::is_floating_point <_A1>::value, bool >::type
444
505
isnan (_A1 __lcpp_x) _NOEXCEPT
445
506
{
446
507
return __libcpp_isnan ((typename std::__promote<_A1>::type)__lcpp_x);
447
508
}
448
509
510
+ template <class _A1 >
511
+ inline _LIBCPP_INLINE_VISIBILITY
512
+ typename std::enable_if<std::is_integral<_A1>::value, bool >::type
513
+ isnan (_A1) _NOEXCEPT
514
+ { return false ; }
515
+
449
516
#endif // isnan
450
517
451
518
// isnormal
@@ -464,12 +531,18 @@ __libcpp_isnormal(_A1 __lcpp_x) _NOEXCEPT
464
531
465
532
template <class _A1 >
466
533
inline _LIBCPP_INLINE_VISIBILITY
467
- typename std::enable_if<std::is_arithmetic <_A1>::value, bool >::type
534
+ typename std::enable_if<std::is_floating_point <_A1>::value, bool >::type
468
535
isnormal (_A1 __lcpp_x) _NOEXCEPT
469
536
{
470
537
return __libcpp_isnormal ((typename std::__promote<_A1>::type)__lcpp_x);
471
538
}
472
539
540
+ template <class _A1 >
541
+ inline _LIBCPP_INLINE_VISIBILITY
542
+ typename std::enable_if<std::is_integral<_A1>::value, bool >::type
543
+ isnormal (_A1 __lcpp_x) _NOEXCEPT
544
+ { return __lcpp_x != 0 ; }
545
+
473
546
#endif // isnormal
474
547
475
548
// isgreater
0 commit comments