From: Heime <heimeborgia@protonmail.com>
To: Heime via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org>
Subject: Output an alist from a function
Date: Mon, 23 Sep 2024 21:42:38 +0000 [thread overview]
Message-ID: <TR2674kRTdDUTqKBnwk9zvxM9gSHUb3b595LvcOk-KLzZB71jOLde3y8bOKSJYQsYfnyfTCGGpUVc2fpejLnJGg_fh6MTJDtGhvUiSq_YqU=@protonmail.com> (raw)
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)) ))
next reply other threads:[~2024-09-23 21:42 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-23 21:42 Heime [this message]
2024-09-24 15:04 ` Output an alist from a function 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
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='TR2674kRTdDUTqKBnwk9zvxM9gSHUb3b595LvcOk-KLzZB71jOLde3y8bOKSJYQsYfnyfTCGGpUVc2fpejLnJGg_fh6MTJDtGhvUiSq_YqU=@protonmail.com' \
--to=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.
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).