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