Signed integer (32bit) variable existence check in storage.
Syntax |
bool exists_int32(const string &in name) |
---|---|
name |
Variable name |
Result |
Returns true if existing, false otherwise |
Example of use:
bool execute(shell::object @shell, const string &in cmdline) { // Verify existence of variable "my_var" bool f_my_var = shell.storage.exists_int32("my_var"); } |