From: Eduardo Ochs <eduardoochs@gmail.com>
To: Heime <heimeborgia@protonmail.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Defining an array in a let clause.
Date: Mon, 5 Dec 2022 15:12:15 -0300 [thread overview]
Message-ID: <CADs++6iQ-ui-x9vNdopQqaLyo9pKFD+jN9W6h_KaP9VyCkMx=A@mail.gmail.com> (raw)
In-Reply-To: <83k0359aj2.fsf@gnu.org>
On Mon, 5 Dec 2022 at 11:44, Eli Zaretskii <eliz@gnu.org> wrote:
>
> > Date: Mon, 05 Dec 2022 13:56:53 +0000
> > From: Heime <heimeborgia@protonmail.com>
> > Cc: help-gnu-emacs@gnu.org
> >
> > ------- Original Message -------
> > On Monday, December 5th, 2022 at 12:54 PM, Eli Zaretskii <eliz@gnu.org> wrote:
> >
> >
> > > > Date: Mon, 05 Dec 2022 11:40:44 +0000
> > > > From: Heime heimeborgia@protonmail.com
> > > >
> > > > How can I set up an array of five elements in a let clause.
> > > >
> > > > (let ( (ss (nth 0 (decode-time))) ; seconds
> > > > (mm (nth 1 (decode-time))) ; minutes
> > > > (hh (nth 2 (decode-time))) ; hours
> > > > (us (nth 2 (current-time))) ; microsecond
> > > > (ps (nth 3 (current-time))) ; picosecond
> > > > (lc (make-array '(5))) )
> > >
> > >
> > > There are no arrays in Emacs. Do you mean vector? if so use the function
> > > 'vector' to construct a vector. If, OTOH, you want a list, use the function
> > > 'list' instead.
> >
> > Correct, a vector with five elements.
>
> Then the function 'vector' is what you need to use here.
Try this:
(cl-destructuring-bind (ss mm hh &rest rest) (decode-time)
(cl-destructuring-bind (_ _ us ps &rest rest) (current-time)
(vector ss mm hh us ps)))
I don't know cl-lib well... I guess that there are better ways to
do that, and I hope that other people would come up and show
what are these better ways... =)
Cheers,
Edrx
http://angg.twu.net/eepitch.html
next prev parent reply other threads:[~2022-12-05 18:12 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-05 11:40 Defining an array in a let clause Heime
2022-12-05 12:54 ` Eli Zaretskii
2022-12-05 13:56 ` Heime
2022-12-05 14:42 ` Eli Zaretskii
2022-12-05 18:12 ` Eduardo Ochs [this message]
2022-12-05 19:42 ` Jean Louis
2022-12-05 20:01 ` Heime
2022-12-05 21:44 ` Stefan Monnier via Users list for the GNU Emacs text editor
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='CADs++6iQ-ui-x9vNdopQqaLyo9pKFD+jN9W6h_KaP9VyCkMx=A@mail.gmail.com' \
--to=eduardoochs@gmail.com \
--cc=heimeborgia@protonmail.com \
--cc=help-gnu-emacs@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.