"INDV" Pointer functionsΒΆ

Fingerprint ID:0x494e4456

This fingerprint, from RC/Funge-98, implements the indirect get and put. It provides the following commands:

G : posvvalue
Reads one vector from pos, and pushes the cell at that vector. The vector in Funge space is read rightwards in the reverse order (Y and X in Befunge mode, Z, Y and X in Trefunge mode).
P : value posv
Reads one vector from pos, and puts the value to the cell at that vector. The vector in Funge space is read rightwards in the reverse order.
V : posvvecv
Same to G but it reads a vector instead of a scalar. The vector is read in the same way.
W : vecv posv
Same to P but it puts a vector instead of a scalar. The vector is written in the same way.