File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -56,3 +56,18 @@ Returns a new table by removing duplicates values
5656
5757* array.<code >without(object: table , object: table ): table </code ><br />
5858Returns a copy of the table with all instances of the values removed
59+
60+ * array.<code >some(object: table , callback: function ): boolean </code ><br />
61+ Tests whether at least one element in the table passes the test implemented by the callback
62+
63+ * array.<code >every(object: table , callback: function ): boolean </code ><br />
64+ Tests whether all elements in the table passes the test implemented by the callback
65+
66+ * array.<code >zip(object: table , object: table ): table </code ><br />
67+ Returns a table of the two supplied by pairing up equally-positioned elements from both tables
68+
69+ * array.<code >shallowCopy(object: table ): table </code ><br />
70+ Returns a shallow copy of the table passed as parameter
71+
72+ * array.<code >deepCopy(object: table ): table </code ><br />
73+ Returns a deep copy of the table passed as parameter
You can’t perform that action at this time.
0 commit comments