vendor/make-quickutils.lisp @ 2e90748b1555
Stop passing NIL as :hash-function during hash table construction
At least in SBCL 2.0.6, passing :hash-function NIL to make-hash-table causes an
UNDEFINED-FUNCTION error. Since it's unlikely that any other CL implementation
will have useful behavior for an explicit NIL argument that's different from not
passing it at all, it's better to not pass :hash-function if it's set to NIL.
author |
Jacek TeMPOraL Złydach <temporal.pl@gmail.com> |
date |
Sat, 18 Jul 2020 01:03:54 +0200 |
parents |
f5cdc0242ec0 |
children |
(none) |
(ql:quickload 'quickutil)
(qtlc:save-utils-as
"quickutils.lisp"
:utilities '(
:appendf
:compose
:curry
:dohash
:ensure-boolean
:ensure-gethash
:ensure-list
:hash-table-keys
:maphash-keys
:mkstr
:once-only
:rcurry
:removef
:symb
:with-gensyms
)
:package "DIGRAPH.QUICKUTILS")