Crandel / tempel-collection

Collection tempel templates
GNU General Public License v3.0
77 stars 27 forks source link

defmethod print-object template for Common Lisp #57

Open jgarte opened 4 months ago

jgarte commented 4 months ago

This is Common Lisp boiler plate that would be great to have as a template:

(defmethod print-object ((s binary-ring-stream) stream)
  (print-unreadable-object (s stream :type t)
    (format stream "buffer=~a" (stream-buffer s))))

I might try to work on this soon. We currently don't have uniquely Common Lisp templates.

Crandel commented 4 months ago

Feel free to create a PR

jgarte commented 4 months ago

Feel free to create a PR

Story of time in my life. JK ⌚ 😆

Will try to do soon.