registry_exists_ext - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Gets whether or not the given name exists in the given key of the registry and returns the result.
Parameter | Data Type | Description |
---|---|---|
key | string | the key of the registry name |
name | string | the name of the registry value |
boolean: Returns whether the given name exists in the given key.
// demonstrates checking if a name exists in a key of the registry
if (registry_exists_ext("")) {
// name does exist
} else {
// name does not exist
}
NOTOC