push

Function push 

Source
pub unsafe fn push(stack: *mut StackValue, value: Value) -> *mut StackValue
Expand 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.