Open helmutkian opened 3 years ago
Is it possible to call seal-domain on methods with eql specializers?
seal-domain
eql
For example:
(defgeneric foo (object) (:generic-function-class fast-generic-function)) (defmethod foo ((object (eql 'bar))) (print bar)) (seal-domain #'foo '((eql bar)))
Is it possible to call
seal-domain
on methods witheql
specializers?For example: