We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
> (require '[matcher-combinators.standalone :refer [match?]]) nil > (match? {:a :b} {:a :b}) true > (match? keyword? (first (keys {:a :b}))) true > (match? keyword? (first (vals {:a :b}))) true > (match? {:a keyword?} {:a :b}) true > (match? {keyword? :b} {:a :b}) false