summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-02-27 00:57:09 +0300
committerAndrei Karas <akaras@inbox.ru>2018-02-27 00:57:09 +0300
commit6f78659ffda7c1eb4ed1a76c4ce0f28ba9369f2d (patch)
tree3c08699b27837958c3a32cee21d02edb8f546014 /server
parent65b06cc55d84c18cb721ae9b8e5cb7f30ce43ae9 (diff)
downloaddocs-6f78659ffda7c1eb4ed1a76c4ce0f28ba9369f2d.tar.gz
docs-6f78659ffda7c1eb4ed1a76c4ce0f28ba9369f2d.tar.bz2
docs-6f78659ffda7c1eb4ed1a76c4ce0f28ba9369f2d.tar.xz
docs-6f78659ffda7c1eb4ed1a76c4ce0f28ba9369f2d.zip
Add documentation for script function htexists.
Diffstat (limited to 'server')
-rw-r--r--server/scripts/evol_script_commands.txt10
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;
---------------------------------------