Prints array as hex values
import mir.test; import mir.appender: scopedBuffer; auto w = scopedBuffer!char; ubyte[2] array = [0x34, 0x32]; w.printHexArray(array[]); w.data.should == `34 32`;
See Implementation
Prints array as hex values