We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 341059b commit d48f6ceCopy full SHA for d48f6ce
std/object/object.pics
@@ -0,0 +1,14 @@
1
+
2
+// Module: Object
3
+// Provides functions for working with objects
4
+module Object {
5
+ // Function: hasKey
6
+ // Checks is the objects has the specified value as a key
7
+ //
8
+ // Parameters:
9
+ // value - The value to check
10
11
+ // Returns:
12
+ // true if the object contains the key, false if not
13
+ function haskey(value) = pic_nat_ishaskey(value)
14
+}
0 commit comments