==== STKDEPTH ==== ---- ---- Push the depth of a given snapshot from the Undo stack on the current stack ---- ^ __Input Stack__ ^ ^ __Output Stack__ ^ | **Isnapshot** | **→** | **Idepth** | | //Level 1// | //→// | //Level 1// | {{page>manual:chapter6:aux:legend&nofooter&noeditbtn&inline}} |**Type**| [[manual:chapter5:basics#commands|Command]] || |**Parallel list processing**| [[manual:chapter5:listproc#group-1commands-that-cannot-parallel-process|Group 1]] || |**Affected by flags**| None || ---- The ''STKDEPTH'' command retrieves the depth of a given snapshot on the Undo stack and pushes it on the current stack. The command has little utility in interactive mode, since each time a command is typed and ''[[manual:chapter6:operators:cmd_ovr_xeq|XEQ]]''ted a snapshot of the stack is pushed on the Undo stack, altering the position of the intended snapshot. ---- This command is new in newRPL and does not exist in userRPL. ---- The following program « CLEAR 123 456 789 STKPUSH CLEAR "ABC" STKPUSH CLEAR 2 STKDEPTH » will push the number ''3'' on the stack, since the snapshot on level 2 of the Undo stack has 3 elements in it. ---- {{page>manual:chapter6:stack&nofooter&noeditbtn&inline}}