added .shuffle meta keyword authored by Lxlp's avatar Lxlp
...@@ -430,6 +430,7 @@ Given that each meta keyword has a specific input and output type, it is possibl ...@@ -430,6 +430,7 @@ Given that each meta keyword has a specific input and output type, it is possibl
| .reverse | LIST | The list reversed | | .reverse | LIST | The list reversed |
| .sort | LIST | The list sorted alphabetically | | .sort | LIST | The list sorted alphabetically |
| .sortnum | LIST | This list sorted numerically. Each element of the list needs to be a number | | .sortnum | LIST | This list sorted numerically. Each element of the list needs to be a number |
| .shuffle | LIST | Shuffles the list, randomizing its elements |
| .get.{index} | STRING | Element at specified `index` | | .get.{index} | STRING | Element at specified `index` |
| .join.{delimiter} | STRING | Joins elements using `delimiter` | | .join.{delimiter} | STRING | Joins elements using `delimiter` |
| .contains.{element} | BOOLEAN | Whether the list contains `element` | | .contains.{element} | BOOLEAN | Whether the list contains `element` |
... ...
......