assoc-utils icon indicating copy to clipboard operation
assoc-utils copied to clipboard

Utilities for manipulating association lists.

Results 3 assoc-utils issues
Sort by recently updated
recently updated
newest added

It is common practice to have multiple entries in an alist with the same key. E.g. [CLtL2](https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node153.html) explicitly touts this as a feature: > Moreover, because the searching function assoc...

Define `delete-from-alist`, `delete-from-alistf` with `define-modify-macro` and `remove-from-alist` as applied function. Collateral issue: Should `delete-from-alistf` and `remove-from-alistf` be considered deprecated?

Added the function `remove-values-from-alist` and modifiy-macro `delete-values-from-alist`, including tests, and documentation. Alternatively, we could also use the names `remove-alist-values` and `delete-alist-values`. This would be a bit more concise. However, I...