all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Joseph Turner <joseph@breatheoutbreathe.in>
To: Emacs Devel Mailing List <emacs-devel@gnu.org>,
	Adam Porter <adam@alphapapa.net>
Subject: Re: Optionally use copy-tree for cl struct copier
Date: Sun, 10 Sep 2023 11:58:11 -0700	[thread overview]
Message-ID: <87tts1luso.fsf@breatheoutbreathe.in> (raw)
In-Reply-To: <87y1hdluw4.fsf@breatheoutbreathe.in>


Joseph Turner <joseph@breatheoutbreathe.in> writes:

> Joseph Turner <joseph@breatheoutbreathe.in> writes:
>
>> Would you be open to adding an option to cl-defstruct that would alias
>> the copier function to (lambda (obj) (copy-tree obj t)) instead of
>> copy-sequence?
>>
>> If so, what kind of syntax would you want? Maybe something like
>>
>> (cl-defstruct (foo (:copier nil :recursive t)) a b c)
>
> Perhaps instead making copier always recursive, we could instead set the
> copier to a separate function which optionally recurses:
>
> (cl-defun copy-foo (obj &key recursive)
>   "Copy OBJ with `copy-sequence'. If RECURSIVE, use `copy-tree'."
>   (if recursive
>       (copy-tree obj t)
>     (copy-sequence obj)))

... but this may be useless, since you can just use copy-tree.



      parent reply	other threads:[~2023-09-10 18:58 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-10 18:42 Optionally use copy-tree for cl struct copier Joseph Turner
2023-09-10 18:51 ` Joseph Turner
2023-09-10 18:58   ` Joseph Turner
2023-09-10 18:58   ` Joseph Turner [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87tts1luso.fsf@breatheoutbreathe.in \
    --to=joseph@breatheoutbreathe.in \
    --cc=adam@alphapapa.net \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.