📄️ accumulate
Returns the result of accumulating all the values in the range (first,last) to init.
📄️ all
Test that each element of the array passes the given test.
📄️ any
Test that at least one element of the array passes the given test.
📄️ contains
Test if the array contains the specified value.
📄️ fill
Overwrite each element with the given value.
📄️ filter
Filter out elements based on the test.
📄️ find
Find the first element of the array based on the test.
📄️ find_index
Find the index of the first element based on the test.
📄️ find_last
Find the last element of the array based on the test.
📄️ find_last_index
Find the index of the last element based on the test.
📄️ for_each
Iterate over the array.
📄️ join
Concatenate each element of the array into a string with the specified separator.
📄️ pop
Remove an element from the back of the array.
📄️ pop_front
Remove an element from the front of the array.
📄️ push
Add a new element to the back of the array.
📄️ push_front
Add a new element to the front of the array.
📄️ resize
Resize the array.
📄️ reverse
Reverse the array.
📄️ slice
Slice the array from start to end (end not included).
📄️ sort
Sort the array based on the callback.
📄️ transform
Transform each element with a callback.