- Timestamp:
- 2015-09-05T09:27:55-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r3447 r3448 189 189 self)) 190 190 191 (defmethod copy-instance :around (object &rest initargs &key &allow-other-keys) 192 (:documentation "An :AROUND method of COPY-INSTANCE. It replaces 193 exponents with a fresh copy of the sequence.") 194 (:method ((object monom) &rest initargs &key &allow-other-keys) 191 (defmethod copy-instance :around ((object monom) &rest initargs &key &allow-other-keys) 192 "An :AROUND method of COPY-INSTANCE. It replaces 193 exponents with a fresh copy of the sequence." 195 194 (declare (ignore object initargs)) 196 195 (let ((copy (call-next-method)))
Note:
See TracChangeset
for help on using the changeset viewer.