This PR adds a new module of the standard library - array, which will contain functions related to arrays.
The first function in this module is find_index, which searches through a specified array, running the specified predicate function on each and returning the index of the first item passing the predicate (or -1 if none was found)
This PR adds a new module of the standard library - `array`, which will contain functions related to arrays.
The first function in this module is `find_index`, which searches through a specified array, running the specified predicate function on each and returning the index of the first item passing the predicate (or `-1` if none was found)
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
This PR adds a new module of the standard library -
array, which will contain functions related to arrays.The first function in this module is
find_index, which searches through a specified array, running the specified predicate function on each and returning the index of the first item passing the predicate (or-1if none was found)b476b8aaa3to63b37ab094Good to merge