previous | index | next

RA-Stack Access

The advertised way to access an element of the stack is through:
     (top-minus ra-stack offset)

     

If offset = 0, then calculate the stack location by:

     (height ra-stack) - 1
If offset > 0, then:
     (height ra-stack) - 1 - offset
or equivalently:
     (height ra-stack) - (offset + 1)

previous | index | next