formatSelectionAsHex static method

String formatSelectionAsHex(
  1. List<int> bytes
)

Format selection as hex string

Implementation

static String formatSelectionAsHex(List<int> bytes) {
  return bytes.map(formatByte).join(' ');
}