File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Advanced implementation of well known operations:
14
14
* [ Has] ( https://minwork.gitbook.io/array/common-methods/has )
15
15
* [ Map] ( https://minwork.gitbook.io/array/manipulating-array/mapping )
16
16
* [ Filter] ( https://minwork.gitbook.io/array/manipulating-array/filtering )
17
+ * [ Find] ( https://minwork.gitbook.io/array/manipulating-array/finding )
17
18
* [ Group] ( https://minwork.gitbook.io/array/manipulating-array/grouping )
18
19
* [ Sort] ( https://minwork.gitbook.io/array/manipulating-array/sorting )
19
20
* [ Check] ( https://minwork.gitbook.io/array/validating-array/check )
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ class Arr
70
70
*/
71
71
const FIND_RETURN_KEY = 'key ' ;
72
72
/**
73
- * Return all values (preserving original keys) of array elements matching find condition
73
+ * Return array of all values (preserving original keys) of array elements matching find condition
74
74
*/
75
75
const FIND_RETURN_ALL = 'all ' ;
76
76
You can’t perform that action at this time.
0 commit comments