Tagged Questions

1
vote
2answers
38 views

lambda-gtk negative pointer

I was trying to write my own put-pixel on (Gdk) pixbuf in Lisp. When I finally realized how I can operate on C pointers in CL, new obstacle came along - (gdk:pixbuf-get-pixels pb) …
1
vote
1answer
72 views

Pointers in Lisp?

I've started learning Lisp recently and wanted to write a program which uses gtk interface. I've installed lambda-gtk bindings (on CMUCL). I want to have putpixel/getpixel ability …
8
votes
2answers
87 views

Is there a common lisp package naming convention?

I have created some of my own user packages and have run into a name clash. In Java, the naming convention is to use your domain name in the package name: e.g. import com.example. …
2
votes
1answer
70 views

Translating the Q and P function from The Little Schemer into Common Lisp?

In Chapter 9 of the Little Schemer, the Author presents the following two functions (define Q (lambda (str n) (cond ((zero? (remainder (first$ str ) n)) (Q …
10
votes
8answers
304 views

Lisp as a Scripting Language in a C++ app…

Hey, I've been looking at the possibility of adding a scripting language into my framework and I heard about Lisp and thought I would give it a go. Is there a VM for Lisp like Lua …
5
votes
3answers
115 views

Getting the first n elements of a list in Common Lisp?

The title says it all, really. How would I get the first n elements of a list? CL-USER> (equal (some-function 2 '(1 20 300)) '(1 20)) T I am absolutely certai …
13
votes
2answers
290 views

What Lisp is better at parsing?

I'd like to implement a Lisp interpreter in a Lisp dialect mainly as a learning exercise. The one thing I'm thrown off by is just how many choices there are in this area. Primari …
1
vote
3answers
108 views

Common Lisp: cons inside loop

I wonder why in the following code, d is not being consed into x. Any hints are much appreciated. (defun it (x) (setq f '(a b c)) (dolist (d f) (cons d x)) (print x)) …
2
votes
2answers
112 views

Common lisp integer to hex conversion

Is there a similar function to (parse-integer "ff" :radix 16) that will take me back the other way? If I have the int 255 how do I convert it to the string ff?
2
votes
2answers
60 views

When is an initform used?

I'm forming a class for some work on molecular dynamics as follows: (defclass %atom (particle) ((name :initarg :name :initform (error "Every atom in the system must have a name! …
5
votes
2answers
132 views

“unfold” for common lisp?

I learned quite a bit of scheme from SICP but am more interested in common lisp now. I know common lisp's fold is reduce, with special arguments for left or right folding, but what …
2
votes
2answers
83 views

lisp file pointers in classes

I'm running up against a problem in understanding the CLOS way of handling file access within a class. In c++ I would be able to do this: class Foo { Foo (string filename); // …
1
vote
4answers
100 views

Multiple constructors in common lisp

Can classes have multiple constructors and/or copy constructors in common-lisp? That is - in order to create a class for a new vector - "vecr" to represent 3-d vectors of real numb …
7
votes
10answers
2k views

Best Common Lisp IDE

I've used Slime within Emacs as my primary development environment for Common Lisp (or Aquamacs on OS X), but are there other compelling choices out there? I've heard about Lispwor …
1
vote
4answers
112 views

Common Lisp: Beginner’s trouble with funcall

I'm trying to pass a function as an argument and call that function within another function. A piece of my code looks like this: (defun getmove(strategy player board printflag) ( …

1 2 3 4 5 9 next
15 30 50 per page