You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In slot-names you implement the same function twice using implementation specific packages with features flags. You could instead use the implementation-compatibility layer closer-mop, for example:
(defunslot-names (obj)
"Returns the list of slot symbols for a structure/CLOS classinstance."
(loop
for slot in (c2mop:class-slots (class-of obj))
collect (c2mop:slot-definition-name slot))
The text was updated successfully, but these errors were encountered:
In slot-names you implement the same function twice using implementation specific packages with features flags. You could instead use the implementation-compatibility layer closer-mop, for example:
The text was updated successfully, but these errors were encountered: