Set will add the value to the map if it does not exist and will overwrite the value in the map if it does exist.
(string, interface{})
| 62 | // Set will add the value to the map if it does not exist and will overwrite |
| 63 | // the value in the map if it does exist. |
| 64 | Set(string, interface{}) |
| 65 | |
| 66 | // Delete removes the key from the map if it exists. |
| 67 | Delete(string) |
no outgoing calls