DumpArray#

Dump several values in one call, each tagged with its index. Useful when inspecting a function’s return list or an argument list without wrapping every element in its own Dump.

DumpArray($depth, @values). The first argument is the recursion depth (same meaning as Dump’s second argument); the remaining arguments are the values to dump. Each value is preceded by a header line of the form Elt No. N  0x<address>, where N counts from zero. After the header the element is rendered exactly as Dump would render it.

Respects $Devel::Peek::pv_limit and $Devel::Peek::dump_ops the same way Dump does. Returns nothing; output goes to STDERR.