Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kisom/kutils
Various Common Lisp utilities collected in one package.
https://github.com/kisom/kutils
Last synced: 18 days ago
JSON representation
Various Common Lisp utilities collected in one package.
- Host: GitHub
- URL: https://github.com/kisom/kutils
- Owner: kisom
- License: mit
- Created: 2015-04-06T18:47:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-05T20:47:40.000Z (about 9 years ago)
- Last Synced: 2024-10-11T02:47:04.676Z (about 1 month ago)
- Language: Common Lisp
- Homepage: http://codex.metacircular.net/kutils
- Size: 273 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
- License: LICENSE
Awesome Lists containing this project
README
KUTILS
This is a collection of Kyle's utilities. They're things that I find
generally useful when writing programs.There's a few groups of tools:
* Functions from On Lisp
* Functions and macros from Let Over Lambda
* Hash-table based functions
* MiscellaneousOn Lisp tools
=============* mkstr
* symb
* group
* flatten
* composeLet Over Lambda
===============* defmacro!
Hash-table
==========* hashkeys
* sethash
* hash-table-to-alist
* alist-to-hash-tableThe function `enable-hashtable-reader` will activate a reader macro
for hash-tables using `:test #'equal`. This syntax looks like#{ k v ... }#
For example:
CL-USER> (kutils:hashkeys (kutils:alist-to-hashtable (kutils:hashtable-to-alist #{:a :b :c :d}#)))
(:A :C)Miscellanea
===========* interpose
* build-list
* partial
* macroexpand-n
* mksymb
* mkkw
* zip
* defclass!