src/make-quickutils.lisp @ 970e21fa14b0
Implement anonymous variables and the `*_void` opcodes
That was more difficult than I expected. The shitty part was that we have to
thread the anonymous variables way the hell down into the register allocation
phase. I took the opportunity to refactor a bit so further things like this
shouldn't be quite so bad.
author |
Steve Losh <steve@stevelosh.com> |
date |
Mon, 04 Jul 2016 23:35:08 +0000 |
parents |
e8934091b7bb |
children |
410acaae0c14 |
(ql:quickload 'quickutil)
(qtlc:save-utils-as
"quickutils.lisp"
:utilities '(:define-constant
:set-equal
:curry
:switch
:ensure-boolean
:while
:until
:tree-member-p
:tree-collect
:with-gensyms
:once-only
:zip
:alist-to-hash-table
:map-tree
:weave
:range
:alist-plist
)
:package "BONES.QUICKUTILS")