Equivalent to calling array.forEach(callback), while also asserting that the loop has been
entered upon at least once.
Type Parameters
T
The type of the element of array. @param array - The array being looped over. @param callbcak - The callback that is called in each iteration while iterating array. @return undefined. @assert callback` is called at least once.
Equivalent to calling
array.forEach(callback)
, while also asserting that the loop has been entered upon at least once.