Removes string variable from storage.
Syntax |
void unset_string(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_string("my_var"); } |