Skip to content

Commit 01b27cd

Browse files
committed
update readme with the information of the new methods
1 parent 50f1537 commit 01b27cd

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff 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 />
5858
Returns 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

0 commit comments

Comments
 (0)