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) => bindings.zd_keyexpr_includes(
  loanedKeyExpr.cast(),
  other.loanedKeyExpr.cast(),
);