[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Is there utility in making hash-table-{keys, values} built-in functi
From: |
Gerd Möllmann |
Subject: |
Re: Is there utility in making hash-table-{keys, values} built-in functions? |
Date: |
Thu, 28 Nov 2024 19:40:18 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Shankar Rao <shankar.rao@gmail.com> writes:
> Hello all,
>
> I noticed that the functions hash-table-keys and hash-table-values are
> just wrappers around maphash. This means that there is no way to
> iterate over a hash-table without using a lambda.
If this is about syntax, cl-loop has support for hash tables. For
example
for x being the hash-keys of something using (hash-value y)