How does one find the min/max element in a multi-dimensional SV array?

In reply to new_to_uvm:

Remember to think of arrays of arrays instead of multidimensional arrays.

min_element = some_array.min() with (item.min());