File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -227,6 +227,32 @@ Return non-zero if the two parameters are not equal.
227
227
228
228
# Hash opcodes
229
229
230
+ ## atkey
231
+ * ` atkey(Any %hash, String $key) `
232
+ * ` atkey_i(int %hash, String $key) `
233
+ * ` atkey_n(num %hash, String $key) `
234
+ * ` atkey_s(str %hash, String $key) `
235
+
236
+ Return the value of %hash at key $key.
237
+
238
+ ## bindkey
239
+ * ` bindkey(Any %hash, String $key, Any $b) `
240
+ * ` bindkey_i(int %hash, String $key, int $b) `
241
+ * ` bindkey_n(num %hash, String $key, num $b) `
242
+ * ` bindkey_s(str %hash, String $key, str $b) `
243
+
244
+ Bind key $key of %hash to $b and return $b.
245
+
246
+ ## existskey
247
+ * ` existskey(Any %hash, String $key) `
248
+
249
+ Return non-zero if %hash has key $key bound to something.
250
+
251
+ ## deletekey
252
+ * ` deletekey(Any %hash, String $key) `
253
+
254
+ Delete the given key from %hash.
255
+
230
256
# String Opcodes
231
257
232
258
## radix
You can’t perform that action at this time.
0 commit comments