unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: <tomas@tuxteam.de>
To: "Adam Sjøgren" <asjo@koldfront.dk>
Cc: emacs-devel@gnu.org
Subject: Re: Add hints to documentation of car and cdr for (e)lisp newcomers - take 2
Date: Wed, 14 Jul 2021 17:48:47 +0200	[thread overview]
Message-ID: <20210714154847.GA17354@tuxteam.de> (raw)
In-Reply-To: <8735shrl57.fsf@tullinup.koldfront.dk>

[-- Attachment #1: Type: text/plain, Size: 1387 bytes --]

On Wed, Jul 14, 2021 at 05:05:24PM +0200, Adam Sjøgren wrote:
> Ten years ago I was confused by the documentation of car and cdr:
> 
>   ,----
>   | (car LIST)
>   | 
>   | Return the car of LIST.  If arg is nil, return nil.
>   `----
> 
>   ,----
>   | (cdr LIST)
>   | 
>   | Return the cdr of LIST.  If arg is nil, return nil.
>   `----

Yes, this is quite a bit of LISP lore, which is based on how lists
are built of pairs. You have to keep those two concepts apart...

> Or what about:
> 
>   ,----
>   | (car LIST)
>   | 
>   | Return the car of LIST, eg if LIST is '(a . b) return a.  If arg is nil, return nil.
>   `----
> 
>   ,----
>   | (cdr LIST)
>   | 
>   | Return the cdr of LIST, eg if LIST is '(a . b) return b.  If arg is nil, return nil.
>   `----

... this, for example, doesn't exactly work: '(a . b) is not a (proper) list (unless
b is a list itself).

I think there's no way around drawing some box-and-pointer diagrams yourself.

If you are focusing on lists, perhaps the best way to view this is
that the car is the first element of the list and the cdr is the
rest of the list:

  (car '(a b c d e)) => 'a
  (cdr '(a b c d e)) => '(b c d e)

Now I don't know where your issue is. Is it the mnemonics for `car' and `cdr'?
Or the lack of a more thorough introduction on how lists are built of pairs?

Cheers
 - t

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

  parent reply	other threads:[~2021-07-14 15:48 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-14 15:05 Add hints to documentation of car and cdr for (e)lisp newcomers - take 2 Adam Sjøgren
2021-07-14 15:36 ` Andreas Schwab
2021-07-14 15:48 ` tomas [this message]
2021-07-14 15:50 ` Eli Zaretskii
2021-07-14 16:03   ` Lars Ingebrigtsen
2021-07-14 16:13     ` Eli Zaretskii
2021-07-15  4:34       ` Lars Ingebrigtsen
2021-07-14 23:49     ` Stefan Kangas
2021-07-15  4:38       ` Lars Ingebrigtsen
2021-07-15 11:39         ` Stefan Kangas
2021-07-15 14:14           ` Eli Zaretskii
2021-07-15 15:02             ` Tim Cross
2021-07-15 15:41               ` Stefan Monnier
2021-07-15 15:21             ` Stefan Monnier
2021-07-15 15:26               ` Yuan Fu
2021-07-15 15:52                 ` Eduardo Ochs
2021-07-15 15:44               ` Lars Ingebrigtsen
2021-07-15 15:57                 ` Eli Zaretskii
2021-07-16  0:22                   ` Stefan Monnier
2021-07-16  2:08                     ` Jean-Christophe Helary
2021-07-16 13:22                       ` Stefan Monnier
2021-07-16 14:38                         ` Basil L. Contovounesios
2021-07-16  7:00                     ` Eli Zaretskii
2021-07-15 15:53               ` Eli Zaretskii
2021-07-15 16:17                 ` Jean-Christophe Helary
2021-07-15 16:30                   ` Lars Ingebrigtsen
2021-07-15 16:57                     ` Eli Zaretskii
2021-07-15 17:01                       ` Lars Ingebrigtsen
2021-07-15 17:07                         ` Eli Zaretskii
2021-07-15 20:54                         ` Stefan Kangas
2021-07-15 21:11                           ` Lars Ingebrigtsen
2021-07-14 16:37 ` [External] : " Drew Adams

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=20210714154847.GA17354@tuxteam.de \
    --to=tomas@tuxteam.de \
    --cc=asjo@koldfront.dk \
    --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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).