toHash, the built-in `==` operator only dispatches here
when the implementation also overrides bool opEquals(Object) and forwards to this method (see toHash). Implementations must keep toHash and opEquals consistent, and should use constant-time comparison (e.g., safeEqual) for the encoded bytes to prevent timing attacks; comparison time then varies with key length.
Parameters
other | The key to compare against. |
Returns
true if the keys are equal, false otherwise.