-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
The documentation says to specialize write-value like this:
(defmethod jzon:write-value (writer (job job)) ...)
This is incorrect, because the existing method on (writer t) will be more specific than the new one on (t job), so will be called instead. The correct way is to specialize on both parameters:
(defmethod jzon:write-value ((writer jzon:writer) (job job)) ...)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels