From: Stephen Berman <stephen.berman@gmx.net>
To: Heime <heimeborgia@protonmail.com>
Cc: Heime via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org>
Subject: Re: Output an alist from a function
Date: Tue, 24 Sep 2024 18:19:38 +0200 [thread overview]
Message-ID: <87y13hkorp.fsf@gmx.net> (raw)
In-Reply-To: <TR2674kRTdDUTqKBnwk9zvxM9gSHUb3b595LvcOk-KLzZB71jOLde3y8bOKSJYQsYfnyfTCGGpUVc2fpejLnJGg_fh6MTJDtGhvUiSq_YqU=@protonmail.com> (Heime's message of "Mon, 23 Sep 2024 21:42:38 +0000")
On Mon, 23 Sep 2024 21:42:38 +0000 Heime <heimeborgia@protonmail.com> wrote:
> I have an alist composed of keys and associated directory paths, and want
> to output an alist made of the same keys with values being a validation flag.
> Perhaps the problem is the call to mapcar. In the case of the hash table I have
> to call output-table after the maphash.
>
> (defun dirpath-validation (input-table-or-alist)
> "Test validity of directory path for each key."
>
> (cond
>
> ((hash-table-p input-table-or-alist)
>
> ;; Make hash-table for output
> (let ( (output-table (make-hash-table :test 'equal)) )
> (maphash (lambda (key dirpath)
> (puthash key (not (file-directory-p dirpath)) output-table))
> input-table-or-alist)
> output-table))
>
> (t
> (mapcar (lambda (entry)
> (let ( (key (car entry))
> (dirpath (cdr entry)) )
> (cons key (not (file-directory-p dirpath)))) )
> input-table-or-alist)) ))
I get this:
(dirpath-validation #s(hash-table data ("a" "/usr" "b" "file")))
==> #s(hash-table test equal data ("a" nil "b" t))
(dirpath-validation '(("a" . "/usr") ("b" . "file")))
==> (("a") ("b" . t))
What's the problem?
Steve Berman
prev parent reply other threads:[~2024-09-24 16:19 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-23 21:42 Output an alist from a function Heime
2024-09-24 15:04 ` tomas
2024-09-24 21:28 ` Heime
2024-09-25 4:39 ` tomas
2024-09-25 20:30 ` Heime
2024-09-26 4:43 ` tomas
2024-09-26 8:23 ` Heime
2024-09-26 9:01 ` tomas
2024-09-26 20:58 ` Heime
2024-09-24 16:19 ` Stephen Berman [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=87y13hkorp.fsf@gmx.net \
--to=stephen.berman@gmx.net \
--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.