Digital Mark λ 📚 🕹 💾 🥃 on Nostr: nprofile1q…3s5e3 I have a class, say (defclass Point () ( (%x :initarg :x :accessor ...
nprofile1qy2hwumn8ghj7un9d3shjtnddaehgu3wwp6kyqpqmcptsh7w87wfwx94kd65xpkr470m84smz3hwujxkcmfvgqnc2nusq3s5e3 (nprofile…s5e3) I have a class, say
(defclass Point () ( (%x :initarg :x :accessor ptx) (%y :initarg :y :accessor pty) ))
(defparameter p (make-instance 'point :x 2 :y 3))
(write p :stream out)
What I expect:
#{Point :x 2 :y 3}
Now imagine a class with 5 or 10 fields.
(defclass Point () ( (%x :initarg :x :accessor ptx) (%y :initarg :y :accessor pty) ))
(defparameter p (make-instance 'point :x 2 :y 3))
(write p :stream out)
What I expect:
#{Point :x 2 :y 3}
Now imagine a class with 5 or 10 fields.