equals static method

bool equals(
  1. ByteArray a,
  2. ByteArray b
)

Returns true if two byte arrays are equal.

a the first array b the second array

Implementation

static bool equals(ByteArray a, ByteArray b) {
  return a == b;
}