You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the bottom of https://doc.rust-lang.org/std/str/trait.FromStr.html, it lists all the types that have implementations of FromStr. f64 and f32 seem to be missing even though the implementations exist. A search for FromStr also does not bring up the floating point variation either. Nevertheless, ParseFloatError exists (I guessed its name based on ParseIntError, and it was findable via search), and it mentions the existence of a FromStr implementation for the floating point types.
The text was updated successfully, but these errors were encountered:
At the bottom of https://doc.rust-lang.org/std/str/trait.FromStr.html, it lists all the types that have implementations of
FromStr
.f64
andf32
seem to be missing even though the implementations exist. A search forFromStr
also does not bring up the floating point variation either. Nevertheless, ParseFloatError exists (I guessed its name based on ParseIntError, and it was findable via search), and it mentions the existence of aFromStr
implementation for the floating point types.The text was updated successfully, but these errors were encountered: