- Timestamp:
- 2015-06-21T09:54:43-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/ring.lisp
r2834 r2835 158 158 159 159 (defgeneric multiply-by (self other) 160 "Multiply object SELF and OTHER and store the result into SELF.161 It returns SELF. For instances of a class, this operation may be destructive." 162 (:method (self other) (r* self other)))160 (:method (self other) (r* self other)) 161 (:documentation "Multiply object SELF and OTHER and store the result into SELF. 162 It returns SELF. For instances of a class, this operation may be destructive.")) 163 163 164 164 (defgeneric divide-by (self other) 165 "Divided object SELF by OTHER and store the result into SELF.166 It returns SELF. For instances of a class, this operation may be destructive." 167 (:method (self other) (r/ self other)))165 (:method (self other) (r/ self other)) 166 (:documentation "Divided object SELF by OTHER and store the result into SELF. 167 It returns SELF. For instances of a class, this operation may be destructive.")) 168 168 169 169 (defgeneric add-to (self other)
Note:
See TracChangeset
for help on using the changeset viewer.