equals method

bool equals(
  1. KeyExpr other
)

Returns true if this key expression is equal to other in zenoh semantics.

Implementation

bool equals(KeyExpr other) {
  _ensureNotDisposed();
  other._ensureNotDisposed();
  return bindings.zd_keyexpr_equals(_kePtr.cast(), other._kePtr.cast());
}