Removes a double variable from storage.
Syntax |
void unset_double(const string &in name) |
---|---|
name |
Variable name |
Result |
(none) |
Example of use:
bool execute(shell::object @shell, const string &in cmdline) { // Removes variable "my_var" shell.storage.unset_double("my_var"); } |