Update runtime files

This commit is contained in:
Bram Moolenaar
2022-08-19 17:15:35 +01:00
parent 13ed494bb5
commit e80086446c
35 changed files with 1340 additions and 2458 deletions
+5 -2
View File
@@ -4399,8 +4399,11 @@ has({feature} [, {check}])
has_key({dict}, {key}) *has_key()*
The result is a Number, which is TRUE if |Dictionary| {dict}
has an entry with key {key}. FALSE otherwise. The {key}
argument is a string.
has an entry with key {key}. FALSE otherwise.
The {key} argument is a string. In |Vim9| script a number is
also accepted (and converted to a string) but no other types.
In legacy script the usual automatic conversion to string is
done.
Can also be used as a |method|: >
mydict->has_key(key)