kutils is my personal utility library. https://codex.metacircular.net/kutils/
Go to file
Kyle Isom 547795702c Update docs to reflect current state.
Still to figure out what's going on with defclass, and to update the
site.
2015-04-16 17:56:49 -07:00
doc Note use of CLOSER-MOP. 2015-04-11 06:34:33 -07:00
.gitignore Initial import. 2015-04-05 22:24:50 -07:00
LICENSE Initial import. 2015-04-05 22:24:50 -07:00
README.txt Update docs to reflect current state. 2015-04-16 17:56:49 -07:00
kutils.asd Add defconstructor. 2015-04-10 02:41:14 -07:00
kutils.lisp Add zip. 2015-04-15 08:58:41 -07:00
lol.lisp Initial import. 2015-04-05 22:24:50 -07:00
on.lisp Initial import. 2015-04-05 22:24:50 -07:00
package.lisp Add zip. 2015-04-15 08:58:41 -07:00

README.txt

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
* Miscellaneous

On Lisp tools
=============

* mkstr
* symb
* group
* flatten
* compose

Let Over Lambda
===============

* defmacro!

Hash-table
==========

* hashkeys
* sethash
* hash-table-to-alist
* alist-to-hash-table

The 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
* qefclass!