Changeset 4221 for branches/f4grobner/copy.lisp
- Timestamp:
- 2016-06-04T13:41:52-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/copy.lisp
r4220 r4221 38 38 ;; NOTE: This is a shallow copy. Add an around method for classes which need deep copy of the slots. 39 39 (defgeneric copy-instance (object &rest initargs &key &allow-other-keys) 40 (:method ((object number) &rest initargs &key &allow-other-keys) 41 (declare (ignore initargs)) 42 object) 40 43 (:method ((object cons) &rest initargs &key &allow-other-keys) 41 44 (declare (ignore initargs))
Note:
See TracChangeset
for help on using the changeset viewer.