Librerie standard
table
Questa libreria fornisce le funzioni generiche per lavorare sulle tabelle. Mette a disposizione tutte le sue funzioni nella tabella <code>table</code>.
Mostra l'originale in inglese
This library provides generic functions for table manipulation. It provides all its functions inside the table <code>table</code>.
5 propri
Funzioni statiche 5
- concat Given a <code>tbl</code> where all elements are strings or numbers, returns the string with elements concatenated.
- insert Inserts element value at <code>position</code> in <code>tbl</code>
- move Moves elements from the <code>source_table</code> to the <code>dest_table</code>
- remove Removes from <code>tbl</code> the element at position <code>index</code>, returning the value of the removed element
- sort Sorts the <code>tbl</code> elements in a given order, in-place, from <code>tbl[1]</code> to <code>tbl[#tbl]</code>