push

Function push 

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