Show pageDiscussionOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ==== ROLL ==== ---- <callout type="primary" color="" icon="fa fa-book" title="Synopsis"> ---- Move object at level N to level 1 </callout> <callout color="green" icon="fa fa-indent" title="Stack Diagram"> ---- ^ __Input Stack__ ^^^^ ^ __Output Stack__ ^^^^ | **O<sub>n</sub>** | **...** | **O<sub>1</sub>** | **I<sub>n</sub>** | **→** | **O<sub>n-1</sub>** | **...** | **O<sub>1</sub>** | **O<sub>n</sub>** | | //Level n+1// | //...// | //Level 2// | //Level 1// | //→// | //Level n// | //...// | //Level 2// | //Level 1// | {{page>manual:chapter6:aux:legend&nofooter&noeditbtn&inline}} |**Type**| [[manual:chapter5:basics#commands|Command]] || |**Parallel list processing**| [[manual:chapter5:listproc#group-2commands-that-must-use-dolist-to-parallel-process|Group 2]] || |**Affected by flags**| None || </callout> <callout color="orangered" icon="fa fa-comment" title="Description"> ---- The ''ROLL'' command moves the object on the specified level of the stack (i.e. the (N+1)-th level, since level 1 contains N) to the first level of the stack, lifting the other objects accordingly. </callout> <callout type="success" icon="true" title="Compatibility"> ---- This command is fully compatible with userRPL. </callout> <callout type="info" icon="true" title="Usage"> ---- <code> 6: ∡60° 5: 123 4: "This is a string" 3: { 'X' 'Y' 'Z' } 2: 1_m 1: 4 …………………………………………………………………………………… ROLL </code> will result in <code> 5: ∡60° 4: "This is a string" 3: { 'X' 'Y' 'Z' } 2: 1_m 1: 123 …………………………………………………………………………………… </code> </callout> <callout color="darkgray" icon="fa fa-hand-o-right" title="Related Commands"> ---- {{page>manual:chapter6:stack&nofooter&noeditbtn&inline}} </callout> manual/chapter6/stack/cmd_roll.txt Last modified: 2019/10/28 16:31by jojo1973