@@ -918,6 +918,9 @@ impl f64 {
918918 /// Return the memory representation of this floating point number as a byte array in
919919 /// big-endian (network) byte order.
920920 ///
921+ /// See [`from_bits`](Self::from_bits) for some discussion of the
922+ /// portability of this operation (there are almost no issues).
923+ ///
921924 /// # Examples
922925 ///
923926 /// ```
@@ -936,6 +939,9 @@ impl f64 {
936939 /// Return the memory representation of this floating point number as a byte array in
937940 /// little-endian byte order.
938941 ///
942+ /// See [`from_bits`](Self::from_bits) for some discussion of the
943+ /// portability of this operation (there are almost no issues).
944+ ///
939945 /// # Examples
940946 ///
941947 /// ```
@@ -960,6 +966,9 @@ impl f64 {
960966 /// [`to_be_bytes`]: f64::to_be_bytes
961967 /// [`to_le_bytes`]: f64::to_le_bytes
962968 ///
969+ /// See [`from_bits`](Self::from_bits) for some discussion of the
970+ /// portability of this operation (there are almost no issues).
971+ ///
963972 /// # Examples
964973 ///
965974 /// ```
@@ -984,6 +993,9 @@ impl f64 {
984993
985994 /// Create a floating point value from its representation as a byte array in big endian.
986995 ///
996+ /// See [`from_bits`](Self::from_bits) for some discussion of the
997+ /// portability of this operation (there are almost no issues).
998+ ///
987999 /// # Examples
9881000 ///
9891001 /// ```
@@ -1000,6 +1012,9 @@ impl f64 {
10001012
10011013 /// Create a floating point value from its representation as a byte array in little endian.
10021014 ///
1015+ /// See [`from_bits`](Self::from_bits) for some discussion of the
1016+ /// portability of this operation (there are almost no issues).
1017+ ///
10031018 /// # Examples
10041019 ///
10051020 /// ```
@@ -1023,6 +1038,9 @@ impl f64 {
10231038 /// [`from_be_bytes`]: f64::from_be_bytes
10241039 /// [`from_le_bytes`]: f64::from_le_bytes
10251040 ///
1041+ /// See [`from_bits`](Self::from_bits) for some discussion of the
1042+ /// portability of this operation (there are almost no issues).
1043+ ///
10261044 /// # Examples
10271045 ///
10281046 /// ```
0 commit comments