0
votes
2answers
57 views
Where do these namings in common lisp come from?
Hi, in common lisp, the names labels and flet are somewhat peculiar to me.
flet could be described as a sort of let for functions. So it named as such. What about labels?
And where does the "f" of …
1
vote
5answers
57 views
How to make a list of arrays, not their symbols, in Lisp?
I'm trying to make a function to get a delta between arrays, but right now just want to make a subset: get Nth element.
(defvar p1 #(1 2))
(defvar p2 #(3 4))
(mapcar '(lambda (x) (aref x 0)) '(p1 …
2
votes
3answers
80 views
SBCL standard library documentation?
I want to learn and use SBCL because of its ease of learning and speed. (I've been playing with Lisp 3 years ago, and now am refreshing it.) But how can I learn what's included in the standard …
4
votes
1answer
83 views
Association in Common Lisp
There's a structure of the following format:
(setq dist '(((1 1) 1)
((0 2) 3)
((1 2) 1)
((2 3) 3)
((3 5) 4)))
Is there any function which, …
6
votes
14answers
1k views
Why not port Linux kernel to Common Lisp?
Conventional wisdom states that OS kernels must be written in C in order to achieve the necessary levels of performance. This has been the justification for not using more expressive high level …
2
votes
4answers
84 views
returning a lambda function in clisp, then evaluating it
Suppose I have this wonderful function foo
[92]> (defun foo () (lambda() 42))
FOO
[93]> (foo)
#<FUNCTION :LAMBDA NIL 42>
[94]>
Now, suppose I want to actually use foo and return 42.
…
4
votes
5answers
182 views
A lisp function refinement
Dear all:
Hi, I've done the Graham Common Lisp Chapter 5 Exercise 5, which requires a function that takes an object X and a vector V, and returns a list of all the objects that immediately precede X …
2
votes
2answers
49 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) returns me negative …
1
vote
1answer
84 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 on a pixbuf. But I …
8
votes
2answers
102 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.somepackage;.
Are …
5
votes
3answers
141 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 certain this is …
10
votes
8answers
346 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 and Python or am I …
2
votes
1answer
79 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 (second$ str ) n))
…
1
vote
3answers
123 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))
Thank you!
2
votes
2answers
68 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!"))
(mass …
