Removes a signed integer (32bit) variable from storage.
Syntax |
void unset_int32(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_int32("my_var"); } |