@@ -918,6 +918,9 @@ impl f64 {
918
918
/// Return the memory representation of this floating point number as a byte array in
919
919
/// big-endian (network) byte order.
920
920
///
921
+ /// See [`from_bits`](Self::from_bits) for some discussion of the
922
+ /// portability of this operation (there are almost no issues).
923
+ ///
921
924
/// # Examples
922
925
///
923
926
/// ```
@@ -936,6 +939,9 @@ impl f64 {
936
939
/// Return the memory representation of this floating point number as a byte array in
937
940
/// little-endian byte order.
938
941
///
942
+ /// See [`from_bits`](Self::from_bits) for some discussion of the
943
+ /// portability of this operation (there are almost no issues).
944
+ ///
939
945
/// # Examples
940
946
///
941
947
/// ```
@@ -960,6 +966,9 @@ impl f64 {
960
966
/// [`to_be_bytes`]: f64::to_be_bytes
961
967
/// [`to_le_bytes`]: f64::to_le_bytes
962
968
///
969
+ /// See [`from_bits`](Self::from_bits) for some discussion of the
970
+ /// portability of this operation (there are almost no issues).
971
+ ///
963
972
/// # Examples
964
973
///
965
974
/// ```
@@ -984,6 +993,9 @@ impl f64 {
984
993
985
994
/// Create a floating point value from its representation as a byte array in big endian.
986
995
///
996
+ /// See [`from_bits`](Self::from_bits) for some discussion of the
997
+ /// portability of this operation (there are almost no issues).
998
+ ///
987
999
/// # Examples
988
1000
///
989
1001
/// ```
@@ -1000,6 +1012,9 @@ impl f64 {
1000
1012
1001
1013
/// Create a floating point value from its representation as a byte array in little endian.
1002
1014
///
1015
+ /// See [`from_bits`](Self::from_bits) for some discussion of the
1016
+ /// portability of this operation (there are almost no issues).
1017
+ ///
1003
1018
/// # Examples
1004
1019
///
1005
1020
/// ```
@@ -1023,6 +1038,9 @@ impl f64 {
1023
1038
/// [`from_be_bytes`]: f64::from_be_bytes
1024
1039
/// [`from_le_bytes`]: f64::from_le_bytes
1025
1040
///
1041
+ /// See [`from_bits`](Self::from_bits) for some discussion of the
1042
+ /// portability of this operation (there are almost no issues).
1043
+ ///
1026
1044
/// # Examples
1027
1045
///
1028
1046
/// ```
0 commit comments