我有一个专门处理两个参数的多方法:
(defmulti get-tag-type (fn [type tag] [type tag]))
拥有类型允许我将不同的 defmethod 调用分组:
(defmethod get-tag-type [::cat 0] [type tag] ::tiger)
(defmethod get-tag-type [::cat 1] [type tag] ::lion)
(defmethod get-tag-type [::cat 2] [type tag] ::jaguar)
(defmethod get-tag-type [::dog 0] [type tag] ::poodle)
(defmethod get-tag-type [::dog 1] [type tag] ::australian-shepherd)
(defmethod get-tag-type [::dog 2] [type tag] ::labrador-retriever)
但是,有时,我想要一个组的全部或默认值,如果其他组都不匹配,则会调用它:
(defmethod get-tag-type [::dog :default] ::mutt)
tag
但是,除非is 实际上,否则这是行不通的:default
。
有什么好方法可以做到这一点?