Surely this has to exist somewhere else2327 (1/19/2011 3:54:29 AM) comp.lang.lisp But my Extensive Research[1] did not find it. So I wrote a cheesy little ASDF package named cl-cmp. It provides generic functions named object-equals and object-less-than, which should have methods defined on... victor.lowther(4)
Working with a temporary file1124 (2/11/2010 4:07:01 PM) comp.lang.lisp I need to work with a fresh, unique file that is deleted automatically when I'm done with it. Here are the functions I came up with, I'd love to hear any feedback. (defparameter *alphabet* (concatenate 'st... xach(862)
Equality of foreign objects5328 (10/14/2009 9:20:20 PM) comp.lang.lisp The hyperspec says of EQUAL that it behaves like EQ for every object except in a bunch of special cases. Does this mean that no conforming Common Lisp implementation can extend EQUAL to meaningfully compare imp... alessiostalla(364)
Read CSV in SBCL729 (9/8/2009 4:27:54 PM) comp.lang.lisp Why the below to read the test.csv file doesn't work well in sbcl? --------------------------------------------------------------------------------------------- test.csv: one,two three,four, five,six ---------... franco(241)
Better mehod to generate a sequence of range?4121 (8/22/2009 1:48:21 PM) comp.lang.lisp Hi all Sometimes, I need a sequence of range. I use the code below (defun GenerateSequenceRange(n m) (loop for i from n to m collect i) ) I want to know if is there better and faster method t... jdxyw2004(126)
This crap was written in Commune Lisp1228 (3/6/2009 11:21:57 AM) comp.lang.lisp This link ( http://www.99-bottles-of-beer.net/lyrics.html ) shows the correct output: .... 2 bottles of beer on the wall, 2 bottles of beer. Take one down and pass it around, 1 bottle of beer on the wall. ... w_a_x_man(2778)
Show me a better way?260 (3/1/2009 7:37:35 PM) comp.lang.lisp Suppose I have a "color" class in a graphics package that supports various color formats, e.g. 32-bit colors (8 bits of red, green, blue, and alpha), 16-bit colors (e.g 5 bits red, 6 bits green, 5 bits blue), H... wrf3(220)