==== LIST→ ====
----
Split a list into its elements
----
^ __Input Stack__ ^ ^ __Output Stack__ ^^^^
| **L** | **→** | **On** | **...** | **O1** | **In** |
| //Level 1// | //→// | //Level n+1// | //...// | //Level 2// | //Level 1// |
{{page>manual:chapter6:aux:legend&nofooter&noeditbtn&inline}}
| **Keyword type** | [[manual:chapter5:basics#commands|Command]] ||
| **Parallel list processing capabilities** | [[manual:chapter5:listproc#group-2commands-that-must-use-dolist-to-parallel-process|Group 2]] | //Commands that must use //''[[manual:chapter6:lists:cmd_cmddolist|DOLIST]]''// to parallel process// |
| **Affected by flags** | //None// ||
----
The ''LIST→'' command takes a list of **In** and returns each object to a separate level, and returns the total number of objects to stack level 1.
----
''LIST→'' is fully equivalent to its **userRPL** counterpart.
----
**__Input__**
4:
3:
2:
1: { 1 3 5 }
…………………………………………………………………………………………………………
LIST→
\\
**__Output__**
4: 1
3: 3
2: 5
1: 3
…………………………………………………………………………………………………………
----
{{page>manual:chapter6:lists&nofooter&noeditbtn&inline}}