Run results for: Fastest Partion of Arrays (heavy predicate)
Define a method that takes an iterable/array and a predicate, and returns two arrays, one with passing elements and one with failed elements. This is useful where you usually use filter(), but want also want an array with the elements that failed the filter.