diff options
author | William Carroll <wpcarro@gmail.com> | 2022-08-05T19·35-0700 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-08-05T19·38+0000 |
commit | 8670746109c9ee2fecb91581cd74d6c913770ae8 (patch) | |
tree | f31e20c84dd5945310b0a4ce78f23ceb73ca3158 /users/wpcarro/emacs/pkgs/list/README.md | |
parent | e5503751c4a3279055c4714a91c39affabb8c461 (diff) |
docs(wpcarro/emacs): Document list.el r/4386
- Add README.md - Remove stale TODOs - Rephrase some of the module docs Change-Id: I14002836feeca4dd702350151b64600ea2a9125d Reviewed-on: https://cl.tvl.fyi/c/depot/+/6042 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/emacs/pkgs/list/README.md')
-rw-r--r-- | users/wpcarro/emacs/pkgs/list/README.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/users/wpcarro/emacs/pkgs/list/README.md b/users/wpcarro/emacs/pkgs/list/README.md new file mode 100644 index 000000000000..7afa8494fb7a --- /dev/null +++ b/users/wpcarro/emacs/pkgs/list/README.md @@ -0,0 +1,19 @@ +# list.el + +Functions for working with lists in Elisp. + +## Wish List + +Here are some additional functions that I'd like to support. + +- **TODO**: delete_at/2 +- **TODO**: flatten/1 +- **TODO**: flatten/2 +- **TODO**: foldl/3 +- **TODO**: foldr/3 +- **TODO**: insert_at/3 +- **TODO**: pop_at/3 +- **TODO**: replace_at/3 +- **TODO**: starts_with?/2 +- **TODO**: update_at/3 +- **TODO**: zip/1 |