- Code: Select all
(defmethod write-int-to-string ((x (eql (mod x #x7FFFFFFF))))
(write-to-string x))
but I think it illustrates the problem. It wouldn't work because it doesn't know what `x' is in the mod application. How would I write that in a general case? That is when I needed an eql-specializer-form to know / use the argument.
Thanks in advance.