Parse a decimal or hexadecimal `Imm64`, formatted as above.
(s: &str)
| 186 | |
| 187 | // Parse a decimal or hexadecimal `Imm64`, formatted as above. |
| 188 | fn from_str(s: &str) -> Result<Self, &'static str> { |
| 189 | parse_i64(s).map(Self::new) |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | /// 64-bit immediate unsigned integer operand. |