* ebobby <
e922f02d-5c6e-44f2...@googlegroups.com> :
Wrote on Wed, 8 Aug 2012 20:07:44 -0700 (PDT):
| Anyone bored enough to do a little code review of a B+ tree
| implementation in CL ? Just looking for general comment to improve my
| "lispyness" I just wrote this to improve my Lisp.
General comments [comments not targetted at a CL learner]: You could
consider using the Common Lisp Object System to 1) specify the access
protocols (the "API") as CLOS Generic Functions, 2) Make BPLUSTREE-NODES
a mixin class, so users could subclass it, and their existing objects
could be managed as bplustrees. ---Madhu