(str: &str, radix: u32)
| 467 | { |
| 468 | type FromStrRadixErr = num_traits::ParseFloatError; |
| 469 | fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr> |
| 470 | { |
| 471 | f32::from_str_radix(str, radix).map(Self) |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | impl One for FL32 |