Get an integer representation of the top of the stack.
| 115 | |
| 116 | /// Get an integer representation of the top of the stack. |
| 117 | inline S64 getIntValue() |
| 118 | { |
| 119 | return dAtol(mBuffer + mStart); |
| 120 | } |
| 121 | |
| 122 | /// Get a float representation of the top of the stack. |
| 123 | inline F64 getFloatValue() |
no test coverage detected