1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
//! This crate contains floating point types that error if they are set to NaN.
//!
//! # Examples
//!
//! ```
//! # fn main() -> Result<(), result_float::NaN> {
//! use result_float::{rf, Rf64, Result};
//!
//! fn geometric_mean(a: Rf64, b: Rf64) -> Result<f64> {
//!     (a * b)?.sqrt()
//! }
//!
//! fn mean(a: Rf64, b: Rf64) -> Result<f64> {
//!     (a + b)? * rf(0.5)?
//! }
//!
//! println!("geometric_mean(10.0, 20.0) = {}", geometric_mean(rf(10.0)?, rf(20.0)?)?);
//! //prints 14.142...
//! assert!(mean(rf(10.0)?, rf(20.0)?)? == rf(15.0)?);
//! # Ok(())
//! # }
//! ```
#![no_std]

#[cfg(test)]
#[macro_use]
extern crate std;
extern crate failure;
#[macro_use]
extern crate failure_derive;
extern crate num_traits;
#[cfg(feature = "serde")]
extern crate serde;
#[cfg(test)]
#[macro_use]
extern crate quickcheck;

// failure_derive may be used with std feature, causing issues
#[allow(unused_imports)]
#[cfg(not(test))]
use core as std;

use core::cmp::Ordering;
use core::fmt::{self, Display, Formatter, LowerExp, UpperExp};
use core::hash::{Hash, Hasher};
use core::num::FpCategory;
use core::ops::{Add, Div, Mul, Neg, Rem, Sub};
use num_traits::float::FloatCore;
#[cfg(feature = "std")]
use num_traits::Float;
#[cfg(feature = "serde")]
use serde::de::{Deserialize, Deserializer, Error};
#[cfg(feature = "serde")]
use serde::ser::{Serialize, Serializer};

/// An error which is returned when an operation returns NaN.
///
/// ```
/// use std::f64::NAN;
/// use result_float::{rf, NaN};
/// assert_eq!(rf(NAN), Err(NaN));
/// ```
#[derive(Copy, Clone, Debug, PartialEq, Eq, Fail)]
#[fail(display = "NaN")]
pub struct NaN;

/// A floating point number that cannot store NaN.
///
/// Usually there is no need to access this struct directly, and instead
/// one of aliases like [`Rf32`] or [`Rf64`] could be used instead.
///
/// [Rf32]: ./type.Rf32.html
/// [Rf64]: ./type.Rf64.html
#[derive(Copy, Clone, Debug, PartialEq, PartialOrd)]
pub struct ResultFloat<F>(F);

impl<F> Eq for ResultFloat<F> where F: PartialEq {}

impl<F> Ord for ResultFloat<F>
where
    F: PartialOrd,
{
    fn cmp(&self, other: &Self) -> Ordering {
        self.partial_cmp(other).unwrap()
    }
}

/// The type returned by most [`ResultFloat`] operations.
///
/// [ResultFloat]: struct.ResultFloat.html
pub type Result<F> = core::result::Result<ResultFloat<F>, NaN>;

/// A floating point number behaving like `f32` that does not allow NaN.
pub type Rf32 = ResultFloat<f32>;
/// A floating point number behaving like `f64` that does not allow NaN.
pub type Rf64 = ResultFloat<f64>;

fn rfu<F>(f: F) -> ResultFloat<F>
where
    F: FloatCore,
{
    rf(f).unwrap()
}

impl<F> ResultFloat<F>
where
    F: FloatCore,
{
    /// Constructs a `ResultFloat` with the given value.
    ///
    /// Returns `Err` if the value is `NaN`.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::{rf, ResultFloat};
    ///
    /// assert_eq!(ResultFloat::new(1.0)?, rf(1.0)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn new(v: F) -> Result<F> {
        if v.is_nan() {
            Err(NaN)
        } else {
            Ok(ResultFloat(v))
        }
    }

    /// Returns the underlying float value.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// assert_eq!(rf(3.14)?.raw(), 3.14);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn raw(self) -> F {
        self.0
    }

    /// Returns `true` if this value is positive infinity or negative infinity and
    /// false otherwise.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let f = rf(7.0)?;
    /// let inf = rf(f64::INFINITY)?;
    /// let neg_inf = rf(f64::NEG_INFINITY)?;
    ///
    /// assert!(!f.is_infinite());
    /// assert!(inf.is_infinite());
    /// assert!(neg_inf.is_infinite());
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn is_infinite(self) -> bool {
        self.0.is_infinite()
    }

    /// Returns `true` if this number is not infinite.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let f = rf(7.0f64)?;
    /// let inf = rf(f64::INFINITY)?;
    /// let neg_inf = rf(f64::NEG_INFINITY)?;
    ///
    /// assert!(f.is_finite());
    /// assert!(!inf.is_finite());
    /// assert!(!neg_inf.is_finite());
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn is_finite(self) -> bool {
        self.0.is_finite()
    }

    /// Returns `true` if the number is neither zero, infinite,
    /// or [subnormal][subnormal].
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let min = rf(f64::MIN_POSITIVE)?; // 2.2250738585072014e-308f64
    /// let max = rf(f64::MAX)?;
    /// let lower_than_min = rf(1.0e-308_f64)?;
    /// let zero = rf(0.0f64)?;
    ///
    /// assert!(min.is_normal());
    /// assert!(max.is_normal());
    ///
    /// assert!(!zero.is_normal());
    /// assert!(!rf(f64::INFINITY)?.is_normal());
    /// // Values between `0` and `min` are Subnormal.
    /// assert!(!lower_than_min.is_normal());
    /// # Ok(())
    /// # }
    /// ```
    /// [subnormal]: https://en.wikipedia.org/wiki/Denormal_number
    #[inline]
    pub fn is_normal(self) -> bool {
        self.0.is_normal()
    }

    /// Returns the floating point category of the number. If only one property
    /// is going to be tested, it is generally faster to use the specific
    /// predicate instead.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::num::FpCategory;
    /// use std::f64;
    ///
    /// let num = rf(12.4)?;
    /// let inf = rf(f64::INFINITY)?;
    ///
    /// assert_eq!(num.classify(), FpCategory::Normal);
    /// assert_eq!(inf.classify(), FpCategory::Infinite);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn classify(self) -> FpCategory {
        self.0.classify()
    }

    /// Returns the largest integer less than or equal to a number.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let f = rf(3.99)?;
    /// let g = rf(3.0)?;
    ///
    /// assert_eq!(f.floor(), rf(3.0)?);
    /// assert_eq!(g.floor(), rf(3.0)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn floor(self) -> Self {
        rfu(self.0.floor())
    }

    /// Returns the smallest integer greater than or equal to a number.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let f = rf(3.01)?;
    /// let g = rf(4.0)?;
    ///
    /// assert_eq!(f.ceil(), rf(4.0)?);
    /// assert_eq!(g.ceil(), rf(4.0)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn ceil(self) -> Self {
        rfu(self.0.ceil())
    }

    /// Returns the nearest integer to a number. Round half-way cases away from
    /// `0.0`.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let f = rf(3.3)?;
    /// let g = rf(-3.3)?;
    ///
    /// assert_eq!(f.round(), rf(3.0)?);
    /// assert_eq!(g.round(), rf(-3.0)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn round(self) -> Self {
        rfu(self.0.round())
    }

    /// Returns the integer part of a number.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let f = rf(3.3)?;
    /// let g = rf(-3.7)?;
    ///
    /// assert_eq!(f.trunc(), rf(3.0)?);
    /// assert_eq!(g.trunc(), rf(-3.0)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn trunc(self) -> Self {
        rfu(self.0.trunc())
    }

    /// Returns the fractional part of a number.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let x = rf(3.5)?;
    /// let y = rf(-3.5)?;
    /// let abs_difference_x = (x.fract()? - rf(0.5)?)?.abs();
    /// let abs_difference_y = (y.fract()? - rf(-0.5)?)?.abs();
    ///
    /// assert!(abs_difference_x < rf(1e-10)?);
    /// assert!(abs_difference_y < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn fract(self) -> Result<F> {
        rf(self.0.fract())
    }

    /// Computes the absolute value of `self`.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let x = rf(3.5)?;
    /// let y = rf(-3.5)?;
    ///
    /// let abs_difference_x = (x.abs() - x)?.abs();
    /// let abs_difference_y = (y.abs() - (-y))?.abs();
    ///
    /// assert!(abs_difference_x < rf(1e-10)?);
    /// assert!(abs_difference_y < rf(1e-10)?);
    ///
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn abs(self) -> Self {
        rfu(self.0.abs())
    }

    /// Returns a number that represents the sign of `self`.
    ///
    /// - `1.0` if the number is positive, `+0.0` or `INFINITY`
    /// - `-1.0` if the number is negative, `-0.0` or `NEG_INFINITY`
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let f = rf(3.5)?;
    ///
    /// assert_eq!(f.signum(), rf(1.0)?);
    /// assert_eq!(rf(f64::NEG_INFINITY)?.signum(), rf(-1.0)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn signum(self) -> Self {
        rfu(self.0.signum())
    }

    /// Returns `true` if and only if `self` has a positive sign, including `+0.0`
    /// and positive infinity.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// let f = rf(7.0)?;
    /// let g = rf(-7.0)?;
    ///
    /// assert!(f.is_sign_positive());
    /// assert!(!g.is_sign_positive());
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn is_sign_positive(self) -> bool {
        self.0.is_sign_positive()
    }

    /// Returns `true` if and only if `self` has a negative sign, including `-0.0`
    /// and negative infinity.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let f = rf(7.0)?;
    /// let g = rf(-7.0)?;
    ///
    /// assert!(!f.is_sign_negative());
    /// assert!(g.is_sign_negative());
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn is_sign_negative(self) -> bool {
        self.0.is_sign_negative()
    }

    /// Takes the reciprocal (inverse) of a number, `1/x`.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let x = rf(2.0)?;
    /// let abs_difference = (x.recip() - (rf(1.0)?/x)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn recip(self) -> Self {
        rfu(self.0.recip())
    }

    /// Raises a number to an integer power.
    ///
    /// Using this function is generally faster than using `powf`. Additionally,
    /// this function cannot return an error value.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let x = rf(2.0)?;
    /// let abs_difference = (x.powi(2) - (x*x)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn powi(self, n: i32) -> Self {
        rfu(self.0.powi(n))
    }

    /// Converts degrees to radians.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64::consts::PI;
    ///
    /// let angle = rf(180.0)?;
    ///
    /// let abs_difference = (angle.to_radians()? - rf(PI)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn to_degrees(self) -> Result<F> {
        rf(self.0.to_degrees())
    }

    /// Converts degrees to radians.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64::consts::PI;
    ///
    /// let angle = rf(180.0)?;
    ///
    /// let abs_difference = (angle.to_radians()? - rf(PI)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn to_radians(self) -> Result<F> {
        rf(self.0.to_radians())
    }
}

#[cfg(feature = "std")]
impl<F> ResultFloat<F>
where
    F: FloatCore + Float,
{
    /// Fused multiply-add. Computes `(self * a) + b` with only one rounding
    /// error. This produces a more accurate result with better performance than
    /// a separate multiplication operation followed by an add.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let m = rf(10.0)?;
    /// let x = rf(4.0)?;
    /// let b = rf(60.0)?;
    ///
    /// // 100.0
    /// let abs_difference = (m.mul_add(x, b)? - ((m*x)? + b)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn mul_add(self, a: Self, b: Self) -> Result<F> {
        rf(self.0.mul_add(a.0, b.0))
    }

    /// Raises a number to a floating point power.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let x = rf(2.0)?;
    /// let abs_difference = (x.powf(rf(2.0)?)? - (x*x)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn powf(self, n: Self) -> Result<F> {
        rf(self.0.powf(n.0))
    }

    /// Takes the square root of a number.
    ///
    /// Returns NaN if `self` is a negative number.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let positive = rf(4.0)?;
    /// let negative = rf(-4.0)?;
    ///
    /// let abs_difference = (positive.sqrt()? - rf(2.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// assert!(negative.sqrt().is_err());
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn sqrt(self) -> Result<F> {
        rf(self.0.sqrt())
    }

    /// Returns `e^(self)`, (the exponential function).
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let one = rf(1.0)?;
    /// // e^1
    /// let e = one.exp();
    ///
    /// // ln(e) - 1 == 0
    /// let abs_difference = (e.ln()? - rf(1.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn exp(self) -> Self {
        rfu(self.0.exp())
    }

    /// Returns `2^(self)`.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let f = rf(2.0)?;
    ///
    /// // 2^2 - 4 == 0
    /// let abs_difference = (f.exp2() - rf(4.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn exp2(self) -> Self {
        rfu(self.0.exp2())
    }

    /// Returns the natural logarithm of the number.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let one = rf(1.0)?;
    /// // e^1
    /// let e = one.exp();
    ///
    /// // ln(e) - 1 == 0
    /// let abs_difference = (e.ln()? - rf(1.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn ln(self) -> Result<F> {
        rf(self.0.ln())
    }

    /// Returns the logarithm of the number with respect to an arbitrary base.
    ///
    /// The result may not be correctly rounded owing to implementation details;
    /// `self.log2()` can produce more accurate results for base 2, and
    /// `self.log10()` can produce more accurate results for base 10.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let five = rf(5.0)?;
    ///
    /// // log5(5) - 1 == 0
    /// let abs_difference = (five.log(rf(5.0)?)? - rf(1.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn log(self, base: Self) -> Result<F> {
        rf(self.0.log(base.0))
    }

    /// Returns the base 2 logarithm of the number.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let two = rf(2.0)?;
    ///
    /// // log2(2) - 1 == 0
    /// let abs_difference = (two.log2()? - rf(1.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn log2(self) -> Result<F> {
        rf(self.0.log2())
    }

    /// Returns the base 10 logarithm of the number.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let ten = rf(10.0)?;
    ///
    /// // log10(10) - 1 == 0
    /// let abs_difference = (ten.log10()? - rf(1.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn log10(self) -> Result<F> {
        rf(self.0.log10())
    }

    /// Takes the cubic root of a number.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let x = rf(8.0)?;
    ///
    /// // x^(1/3) - 2 == 0
    /// let abs_difference = (x.cbrt() - rf(2.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn cbrt(self) -> Self {
        rfu(self.0.cbrt())
    }

    /// Calculates the length of the hypotenuse of a right-angle triangle given
    /// legs of length `x` and `y`.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let x = rf(2.0)?;
    /// let y = rf(3.0)?;
    ///
    /// // sqrt(x^2 + y^2)
    /// let abs_difference = (x.hypot(y) - (x.powi(2) + y.powi(2))?.sqrt()?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn hypot(self, other: Self) -> Self {
        rfu(self.0.hypot(other.0))
    }

    /// Computes the sine of a number (in radians).
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let x = (rf(f64::consts::PI)? / rf(2.0)?)?;
    ///
    /// let abs_difference = (x.sin()? - rf(1.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn sin(self) -> Result<F> {
        rf(self.0.sin())
    }

    /// Computes the cosine of a number (in radians).
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let x = (rf(2.0)? * rf(f64::consts::PI)?)?;
    ///
    /// let abs_difference = (x.cos()? - rf(1.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn cos(self) -> Result<F> {
        rf(self.0.cos())
    }

    /// Computes the tangent of a number (in radians).
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let x = (rf(f64::consts::PI)? / rf(4.0)?)?;
    /// let abs_difference = (x.tan()? - rf(1.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-14)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn tan(self) -> Result<F> {
        rf(self.0.tan())
    }

    /// Computes the arcsine of a number. Return value is in radians in
    /// the range [-pi/2, pi/2] or NaN if the number is outside the range
    /// [-1, 1].
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let f = (rf(f64::consts::PI)? / rf(2.0)?)?;
    ///
    /// // asin(sin(pi/2))
    /// let abs_difference = (f.sin()?.asin()? - (rf(f64::consts::PI)? / rf(2.0)?)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn asin(self) -> Result<F> {
        rf(self.0.asin())
    }

    /// Computes the arccosine of a number. Return value is in radians in
    /// the range [0, pi] or NaN if the number is outside the range
    /// [-1, 1].
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let f = (rf(f64::consts::PI)? / rf(4.0)?)?;
    ///
    /// // acos(cos(pi/4))
    /// let abs_difference = (f.cos()?.acos()? - (rf(f64::consts::PI)? / rf(4.0)?)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn acos(self) -> Result<F> {
        rf(self.0.acos())
    }

    /// Computes the arctangent of a number. Return value is in radians in the
    /// range [-pi/2, pi/2];
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let f = rf(1.0)?;
    ///
    /// // atan(tan(1))
    /// let abs_difference = (f.tan()?.atan() - rf(1.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn atan(self) -> Self {
        rfu(self.0.atan())
    }

    /// Computes the four quadrant arctangent of `self` (`y`) and `other` (`x`) in radians.
    ///
    /// * `x = 0`, `y = 0`: `0`
    /// * `x >= 0`: `arctan(y/x)` -> `[-pi/2, pi/2]`
    /// * `y >= 0`: `arctan(y/x) + pi` -> `(pi/2, pi]`
    /// * `y < 0`: `arctan(y/x) - pi` -> `(-pi, -pi/2)`
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let pi = rf(f64::consts::PI)?;
    /// // Positive angles measured counter-clockwise
    /// // from positive x axis
    /// // -pi/4 radians (45 deg clockwise)
    /// let x1 = rf(3.0)?;
    /// let y1 = -rf(3.0)?;
    ///
    /// // 3pi/4 radians (135 deg counter-clockwise)
    /// let x2 = -rf(3.0)?;
    /// let y2 = rf(3.0)?;
    ///
    /// let abs_difference_1 = (y1.atan2(x1) - (-pi/rf(4.0)?)?)?.abs();
    /// let abs_difference_2 = (y2.atan2(x2) - ((rf(3.0)?*pi)?/rf(4.0)?)?)?.abs();
    ///
    /// assert!(abs_difference_1 < rf(1e-10)?);
    /// assert!(abs_difference_2 < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn atan2(self, other: Self) -> Self {
        rfu(self.0.atan2(other.0))
    }

    /// Simultaneously computes the sine and cosine of the number, `x`. Returns
    /// `(sin(x), cos(x))`.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let x = (rf(f64::consts::PI)?/rf(4.0)?)?;
    /// let f = x.sin_cos()?;
    ///
    /// let abs_difference_0 = (f.0 - x.sin()?)?.abs();
    /// let abs_difference_1 = (f.1 - x.cos()?)?.abs();
    ///
    /// assert!(abs_difference_0 < rf(1e-10)?);
    /// assert!(abs_difference_1 < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn sin_cos(self) -> core::result::Result<(Self, Self), NaN> {
        let (a, b) = self.0.sin_cos();
        Ok((rf(a)?, rf(b)?))
    }

    /// Returns `e^(self) - 1` in a way that is accurate even if the
    /// number is close to zero.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let x = rf(7.0)?;
    ///
    /// // e^(ln(7)) - 1
    /// let abs_difference = (x.ln()?.exp_m1() - rf(6.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn exp_m1(self) -> Self {
        rfu(self.0.exp_m1())
    }

    /// Returns `ln(1+n)` (natural logarithm) more accurately than if
    /// the operations were performed separately.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let x = (rf(f64::consts::E)? - rf(1.0)?)?;
    ///
    /// // ln(1 + (e - 1)) == ln(e) == 1
    /// let abs_difference = (x.ln_1p()? - rf(1.0)?)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn ln_1p(self) -> Result<F> {
        rf(self.0.ln_1p())
    }

    /// Hyperbolic sine function.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let e = rf(f64::consts::E)?;
    /// let x = rf(1.0)?;
    ///
    /// let f = x.sinh();
    /// // Solving sinh() at 1 gives `(e^2-1)/(2e)`
    /// let g = ((e.powi(2) - rf(1.0)?)?/(rf(2.0)?*e)?)?;
    /// let abs_difference = (f - g)?.abs();
    ///
    /// assert!(abs_difference < rf(1e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn sinh(self) -> Self {
        rfu(self.0.sinh())
    }

    /// Hyperbolic cosine function.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let e = rf(f64::consts::E)?;
    /// let x = rf(1.0)?;
    /// let f = x.cosh();
    /// // Solving cosh() at 1 gives this result
    /// let g = ((e.powi(2) + rf(1.0)?)?/(rf(2.0)?*e)?)?;
    /// let abs_difference = (f - g)?.abs();
    ///
    /// // Same result
    /// assert!(abs_difference < rf(1.0e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn cosh(self) -> Self {
        rfu(self.0.cosh())
    }

    /// Hyperbolic tangent function.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let e = rf(f64::consts::E)?;
    /// let x = rf(1.0)?;
    ///
    /// let f = x.tanh();
    /// // Solving tanh() at 1 gives `(1 - e^(-2))/(1 + e^(-2))`
    /// let g = ((rf(1.0)? - e.powi(-2))?/(rf(1.0)? + e.powi(-2))?)?;
    /// let abs_difference = (f - g)?.abs();
    ///
    /// assert!(abs_difference < rf(1.0e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn tanh(self) -> Self {
        rfu(self.0.tanh())
    }

    /// Inverse hyperbolic sine function.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let x = rf(1.0)?;
    /// let f = x.sinh().asinh();
    ///
    /// let abs_difference = (f - x)?.abs();
    ///
    /// assert!(abs_difference < rf(1.0e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn asinh(self) -> Self {
        rfu(self.0.asinh())
    }

    /// Inverse hyperbolic cosine function.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    ///
    /// let x = rf(1.0)?;
    /// let f = x.cosh().acosh()?;
    ///
    /// let abs_difference = (f - x)?.abs();
    ///
    /// assert!(abs_difference < rf(1.0e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn acosh(self) -> Result<F> {
        rf(self.0.acosh())
    }

    /// Inverse hyperbolic tangent function.
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// use std::f64;
    ///
    /// let e = rf(f64::consts::E)?;
    /// let f = e.tanh().atanh()?;
    ///
    /// let abs_difference = (f - e)?.abs();
    ///
    /// assert!(abs_difference < rf(1.0e-10)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn atanh(self) -> Result<F> {
        rf(self.0.atanh())
    }
}

impl ResultFloat<f32> {
    /// Raw transmutation to `u32`.
    ///
    /// This is currently identical to `transmute::<f32, u32>(self.raw())` on all platforms.
    ///
    /// Note that this function is distinct from `as` casting, which attempts to
    /// preserve the *numeric* value, and not the bitwise value.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// assert!(rf(1f32)?.to_bits() != 1f32 as u32); // to_bits() is not casting!
    /// assert_eq!(rf(12.5f32)?.to_bits(), 0x41480000);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn to_bits(self) -> u32 {
        self.0.to_bits()
    }

    /// Raw transmutation from `u32`.
    ///
    /// This is currently identical to `rf(transmute::<u32, f32>(v))` on all platforms.
    /// It turns out this is incredibly portable, for two reasons:
    ///
    /// * Floats and Ints have the same endianness on all supported platforms.
    /// * IEEE-754 very precisely specifies the bit layout of floats.
    ///
    /// Note that this function is distinct from `as` casting, which attempts to
    /// preserve the *numeric* value, and not the bitwise value.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::{rf, Rf32};
    /// let v = Rf32::from_bits(0x41480000)?;
    /// let difference = (v - rf(12.5)?)?.abs();
    /// assert!(difference <= rf(1e-5)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn from_bits(v: u32) -> Result<f32> {
        rf(f32::from_bits(v))
    }
}

impl ResultFloat<f64> {
    /// Raw transmutation to `u64`.
    ///
    /// This is currently identical to `transmute::<f64, u64>(self.raw())` on all platforms.
    ///
    /// Note that this function is distinct from `as` casting, which attempts to
    /// preserve the *numeric* value, and not the bitwise value.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::rf;
    /// assert!(rf(1f64)?.to_bits() != 1f64 as u64); // to_bits() is not casting!
    /// assert_eq!(rf(12.5f64)?.to_bits(), 0x4029000000000000);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn to_bits(self) -> u64 {
        self.0.to_bits()
    }

    /// Raw transmutation from `u64`.
    ///
    /// This is currently identical to `rf(transmute::<u64, f64>(v))` on all platforms.
    /// It turns out this is incredibly portable, for two reasons:
    ///
    /// * Floats and Ints have the same endianness on all supported platforms.
    /// * IEEE-754 very precisely specifies the bit layout of floats.
    ///
    /// Note that this function is distinct from `as` casting, which attempts to
    /// preserve the *numeric* value, and not the bitwise value.
    ///
    /// # Examples
    ///
    /// ```
    /// # fn main() -> Result<(), result_float::NaN> {
    /// use result_float::{rf, Rf64};
    /// let v = Rf64::from_bits(0x4029000000000000)?;
    /// let difference = (v - rf(12.5)?)?.abs();
    /// assert!(difference <= rf(1e-5)?);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn from_bits(v: u64) -> Result<f64> {
        rf(f64::from_bits(v))
    }
}

macro_rules! op_impl {
    ($( $imp:ident $method:ident $op:tt ) *) => {
        $(
            impl<F> $imp for ResultFloat<F>
            where
                F: FloatCore
            {
                type Output = Result<F>;
                #[inline]
                fn $method(self, other: Self) -> Result<F> {
                    rf(self.0 $op other.0)
                }
            }
        )*
    };
}

op_impl!(
    Add add +
    Sub sub -
    Mul mul *
    Div div /
    Rem rem %
);

impl<F> Neg for ResultFloat<F>
where
    F: FloatCore,
{
    type Output = ResultFloat<F>;
    #[inline]
    fn neg(self) -> ResultFloat<F> {
        rfu(-self.0)
    }
}

macro_rules! format_impl {
    ($($imp:ident)*) => {
        $(
            impl<F> $imp for ResultFloat<F>
            where
                F: $imp,
            {
                #[inline]
                fn fmt(&self, f: &mut Formatter) -> fmt::Result {
                    self.0.fmt(f)
                }
            }
        )*
    };
}

format_impl!(Display LowerExp UpperExp);

macro_rules! hash {
    ($($t:ident $method:ident)*) => {
        $(
            impl Hash for ResultFloat<$t> {
                fn hash<H>(&self, state: &mut H)
                where
                    H: Hasher,
                {
                    state.$method(if self.0 == 0.0 { 0 } else { self.0.to_bits() })
                }
            }
        )*
    };
}

hash!(f32 write_u32 f64 write_u64);

impl<F> Default for ResultFloat<F>
where
    F: Default + FloatCore,
{
    fn default() -> ResultFloat<F> {
        rf(F::default()).unwrap()
    }
}

#[cfg(feature = "serde")]
/// Requires crate feature `serde`
impl<F> Serialize for ResultFloat<F>
where
    F: Serialize,
{
    fn serialize<S>(&self, serializer: S) -> core::result::Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        self.0.serialize(serializer)
    }
}

#[cfg(feature = "serde")]
/// Requires crate feature `serde`
impl<'de, F> Deserialize<'de> for ResultFloat<F>
where
    F: Deserialize<'de> + FloatCore,
{
    fn deserialize<D>(deserializer: D) -> core::result::Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        rf(F::deserialize(deserializer)?).map_err(D::Error::custom)
    }
}

/// Shorthand for [`ResultFloat::new(value)`].
///
/// ```
/// # fn main() -> Result<(), result_float::NaN> {
/// use result_float::rf;
/// assert_eq!((rf(0.5)? * rf(2.0)?)?, rf(1.0)?);
/// # Ok(())
/// # }
/// ```
///
/// [`ResultFloat::new(value)`]: ./struct.ResultFloat.html#method.new
#[inline]
pub fn rf<F>(v: F) -> Result<F>
where
    F: FloatCore,
{
    ResultFloat::new(v)
}

#[cfg(test)]
mod tests {
    use core::hash::{Hash, Hasher};
    use quickcheck::TestResult;
    use {rf, Rf64};

    struct TestHasher {
        value: u64,
        shift: u8,
    }

    impl Hasher for TestHasher {
        fn finish(&self) -> u64 {
            self.value
        }

        fn write(&mut self, bytes: &[u8]) {
            for &b in bytes {
                self.value += u64::from(b) << self.shift;
                self.shift += 8;
            }
        }
    }

    fn hash(v: impl Hash) -> u64 {
        let mut hasher = TestHasher { value: 0, shift: 0 };
        v.hash(&mut hasher);
        hasher.finish()
    }

    #[test]
    fn test_positive_zero_f32() {
        assert_eq!(hash(rf(0.0f32).unwrap()), 0);
    }

    #[test]
    fn test_negative_zero_f32() {
        assert_eq!(hash(rf(-0.0f32).unwrap()), 0);
    }

    #[test]
    fn test_positive_zero_f64() {
        assert_eq!(hash(rf(0.0).unwrap()), 0);
    }

    #[test]
    fn test_negative_zero_f64() {
        assert_eq!(hash(rf(-0.0).unwrap()), 0);
    }

    macro_rules! rf {
        ($x:expr) => {{
            let x = $x;
            if x.is_nan() {
                return TestResult::discard();
            }
            rf(x).unwrap()
        }};
    }

    quickcheck! {
        fn floor(x: f64) -> TestResult {
            TestResult::from_bool(rf!(x).floor().raw() == x.floor())
        }

        fn acosh(x: f64) -> TestResult {
            let x = rf!(x).abs();
            TestResult::from_bool((x.cosh().acosh().unwrap() - x).unwrap() < rf(1e-10).unwrap())
        }

        fn hash_f32(x: f32) -> TestResult {
            let x = rf!(x);
            if x == rf!(0.0f32) && x.is_sign_negative() {
                TestResult::discard()
            } else {
                TestResult::from_bool(hash(x) == x.to_bits().into())
            }
        }

        fn hash_f64(x: f64) -> TestResult {
            let x = rf!(x);
            if x == rf!(0.0f64) && x.is_sign_negative() {
                TestResult::discard()
            } else {
                TestResult::from_bool(hash(x) == x.to_bits())
            }
        }
    }

    #[test]
    fn test_default() {
        assert_eq!(Rf64::default(), rf(0.0).unwrap());
    }

    #[cfg(feature = "serde")]
    #[test]
    fn test_ser_de() {
        extern crate serde_test;
        serde_test::assert_tokens(&rf(3.14).unwrap(), &[serde_test::Token::F64(3.14)]);
    }

    #[test]
    fn test_display() {
        assert_eq!(format!("{}", rf(3.14).unwrap()), "3.14");
    }
}