pub unsafe fn push(stack: *mut StackValue, value: Value) -> *mut StackValueExpand description
Push a value onto the stack
Stores the value at the current stack pointer and returns sp + 1.
ยงSafety
Stack pointer must be valid and have room for the value.