You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
404 B
17 lines
404 B
class ByteUtils { |
|
static bool eq(List<int> a, List<int> b) { |
|
if (a.length != b.length) { |
|
return false; |
|
} |
|
for (int i = a.length - 1; i >= 0; i--) { |
|
if (a[i] != b[i]) { |
|
return false; |
|
} |
|
} |
|
return true; |
|
} |
|
|
|
static String toHex(int val) => '0x${val.toRadixString(16)}'; |
|
|
|
static String toHexList(List<int> list) => list.map((val) => toHex(val)).join(' '); |
|
}
|
|
|