(value_str: &str)
| 228 | /// Create an integer value from its representation as string. |
| 229 | #[inline] |
| 230 | pub fn from_string(value_str: &str) -> Option<Self> { |
| 231 | value_str.parse().ok() |
| 232 | } |
| 233 | |
| 234 | /// Create an optional i256 from the provided `f64`. Returning `None` |
| 235 | /// if overflow occurred |