Added features to readme.

This commit is contained in:
2024-07-03 19:49:18 -07:00
parent 7e380efd7d
commit fb86dca332
4 changed files with 226 additions and 22 deletions

View File

@@ -1888,11 +1888,7 @@ namespace ehs
if (aSize != bSize)
return false;
for (UInt_64 i = 0; i < aSize; ++i)
if (a[i] != b[i])
return false;
return true;
return Util::Compare(a, b, aSize);
}
};