diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-02-27 00:57:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-02-27 00:57:09 +0300 |
commit | 6f78659ffda7c1eb4ed1a76c4ce0f28ba9369f2d (patch) | |
tree | 3c08699b27837958c3a32cee21d02edb8f546014 | |
parent | 65b06cc55d84c18cb721ae9b8e5cb7f30ce43ae9 (diff) | |
download | docs-6f78659ffda7c1eb4ed1a76c4ce0f28ba9369f2d.tar.gz docs-6f78659ffda7c1eb4ed1a76c4ce0f28ba9369f2d.tar.bz2 docs-6f78659ffda7c1eb4ed1a76c4ce0f28ba9369f2d.tar.xz docs-6f78659ffda7c1eb4ed1a76c4ce0f28ba9369f2d.zip |
Add documentation for script function htexists.
-rw-r--r-- | server/scripts/evol_script_commands.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/server/scripts/evol_script_commands.txt b/server/scripts/evol_script_commands.txt index f03675b..f40f7f2 100644 --- a/server/scripts/evol_script_commands.txt +++ b/server/scripts/evol_script_commands.txt @@ -828,6 +828,16 @@ calculating the size. Example: .@len = htsize .@ht_id; +--------------------------------------- + +*htexists id; + +Check is given hash table exists. +Return false if hash table not exists. +Return true if hash table exists. + +Example: + .@exists = htexists .@ht_id; --------------------------------------- |