map_insert
Restituisce una mappa con una chiave/valore aggiunto.
Sintassi
map_insert(map, key, value)
Argomenti
- map una mappa
- key la chiave da aggiungere
- value il valore da aggiungere
Esempi
map_insert(map('1','one'),'3','three') → map: 1: 'one', 3: 'three'
