pub type Stack = *mut StackValue;Expand description
Stack: A pointer to the current position in a contiguous array of StackValue.
Points to where the next value would be pushed. sp - 1 points to the top value, sp - 2 to second, etc.
pub type Stack = *mut StackValue;Stack: A pointer to the current position in a contiguous array of StackValue.
Points to where the next value would be pushed. sp - 1 points to the top value, sp - 2 to second, etc.