all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Thorsten Jolitz <tjolitz@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: 'length' function for lists and cons cells?
Date: Thu, 21 Mar 2013 23:09:01 +0100	[thread overview]
Message-ID: <87wqt05rsy.fsf@gmail.com> (raw)
In-Reply-To: 7189477CE70041E985830EA4A0075ED7@us.oracle.com

"Drew Adams" <drew.adams@oracle.com> writes:

>> which function could I use when I map an alist e.g. with dolist, that
>> contains both types of associations as shown below: cons 
>> cells, or lists with 3 or more elements?
>> 
>> 'length' doesn't work on cons cells:
>> 
>> Debugger entered--Lisp error: (wrong-type-argument listp "c")
>>   length(("a" . "c"))
>
> It's not clear to me what you're asking.

I probably wasn't entirely clear to me either ..

> Are you looking for a "length" function that works for both true lists
> (but why do you mention 3 or more elements?) and a cons whose last cdr
> is a non-nil atom?
>
> If so then it is up to you to define what you want such a "length" to
> be/mean. Perhaps what you want is something like this?
>
> (defun thorsten-len (xs)
>   (cond ((null xs)       0)
>         ((null (cdr xs)) 1)
>         ((atom (cdr xs)) 2)
>         (t (1+ (thorsten-len (cdr xs))))))
>

But with this function you answered the question I really wanted to ask:
how to distinguish between a true list and a cons cell - by the use of
'atom' on the last cdr. Maybe pretty basic, but I haven't done it
before. 

> (thorsten-len '(1 2 3 4 . 5)) => 5
>
> (setq foo  '((a . 1) (b 2) (c (3 3 3)) (d 4 4 4 . 4)))
> (mapcar #'thorsten-len foo) => (2 2 2 5)
>
> (setq bar  ())
> (dolist (ff  foo) (push ff bar))
> (reverse bar) => ((a . 1) (b 2) (c  (3 3 3)) (d 4 4 4 . 4))

Thanks, nice solution - very useful. 

-- 
cheers,
Thorsten




  reply	other threads:[~2013-03-21 22:09 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-21 18:21 'length' function for lists and cons cells? Thorsten Jolitz
2013-03-21 20:02 ` Stephen Berman
2013-03-21 21:58   ` Thorsten Jolitz
2013-03-21 22:05     ` Drew Adams
     [not found]   ` <mailman.22591.1363903134.855.help-gnu-emacs@gnu.org>
2013-03-23 11:24     ` Pascal J. Bourguignon
2013-03-21 20:10 ` Drew Adams
2013-03-21 22:09   ` Thorsten Jolitz [this message]
     [not found] ` <mailman.22588.1363896620.855.help-gnu-emacs@gnu.org>
2013-03-25 15:24   ` duthen.cnv
2013-03-25 20:02     ` Pascal J. Bourguignon
     [not found] <mailman.22586.1363890109.855.help-gnu-emacs@gnu.org>
2013-03-21 20:49 ` Pascal J. Bourguignon
2013-03-22  2:38   ` Thorsten Jolitz
2013-03-22  7:27     ` Mark Skilbeck
2013-03-22  9:57       ` Thorsten Jolitz
     [not found]       ` <mailman.22632.1363946271.855.help-gnu-emacs@gnu.org>
2013-03-23 12:19         ` Pascal J. Bourguignon
2013-03-23 15:35           ` Drew Adams
     [not found]           ` <mailman.22706.1364052941.855.help-gnu-emacs@gnu.org>
2013-03-23 15:52             ` Pascal J. Bourguignon
2013-03-24  5:20               ` Drew Adams
     [not found]   ` <mailman.22618.1363919920.855.help-gnu-emacs@gnu.org>
2013-03-22  7:45     ` Barry Margolin
2013-03-23 11:31     ` Pascal J. Bourguignon

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=87wqt05rsy.fsf@gmail.com \
    --to=tjolitz@gmail.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.