includes method

bool includes(
  1. KeyExpr other
)

Returns true if this key expression includes other.

A key expression includes another if every key in other is also contained in this expression.

Implementation

bool includes(KeyExpr other) {
  _ensureNotDisposed();
  other._ensureNotDisposed();
  return bindings.zd_keyexpr_includes(_kePtr.cast(), other._kePtr.cast());
}