Renames a dictionary entry
(dictrename ename oldsym newsym)
Arguments
Name of the dictionary being modified.
Original key name of the entry.
New key name of the entry.
Return Values
dictrename returns nil.
The newsym value, if the rename is successful. If the oldname is not present in the dictionary, or if ename or newname is invalid, or if newname is already present in the dictionary, thenExamples
dictadd sample:
The following example renames the dictionary created in theCommand: (dictrename (namedobjdict) "my_way_cool_dictionary" "An even cooler dictionary")
"An even cooler dictionary"
dictadd, dictnext, dictremove, dictsearch, and namedobjdict functions.
The