Gets the double value of the argument at `arg`.
(&self, arg: u8)
| 971 | |
| 972 | /// Gets the double value of the argument at `arg`. |
| 973 | pub fn get_double(&self, arg: u8) -> f64 { |
| 974 | f64::from_bits(self.regs[self.fp + self.arg_offset + (arg as usize)]) |
| 975 | } |
| 976 | |
| 977 | /// Gets the integer value of the argument at `arg`. |
| 978 | pub fn get_integer(&self, arg: u8) -> i32 { |