1
vote
3answers
79 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
51 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! …
2
votes
2answers
65 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
79 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 …
4
votes
2answers
117 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 …
1
vote
4answers
82 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
vote
2answers
82 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?
1
vote
3answers
44 views
Getting Stack overflow with GNU CLisp (Windows)
I'm getting "Program stack overflow RESET" message while running my program. So I set added a counter to see how many times I'm recursively calling the main function in my program. …
8
votes
4answers
195 views
How do I iterate through a directory in Common Lisp?
I'm using OpenMCL on Darwin, and I'd like to do something like:
(loop for f in (directory "somedir")
collect (some-per-file-processing f))
But I can't get directory to return …
5
votes
3answers
97 views
How to examine list of defined functions from Common Lisp REPL prompt
I'm a newbie to lisp. I'm evaluating/testing a browser based application presumably written in common lisp. Apart from the browser based interface, the software provides a 'Listene …
3
votes
2answers
77 views
Clozure Common Lisp - TCP Socket Programming - Sending a Reply
I have a very small program which opens a socket and accepts a connection. It then grabs the remote IP and port.
I'd like to send a text message to the remote computer (telnet) an …
2
votes
4answers
151 views
Parsing numbers from strings in lisp
Here's the brief problem:
Input: a list of strings, each containing numbers
(" 3.4 5.4 1.2 6.4" "7.8 5.6 4.3" "1.2 3.2 5.4")
Output: a list of numbers
(3.4 5.4 1.2 6.4 7.8 5.6 4. …
2
votes
2answers
87 views
Hex to decimal conversion in common lisp
Is there an easy helper function in common lisp to convert from hex to decimal?
2
votes
4answers
150 views
In common-lisp, how do I modify part of a list parameter from within a function without changing the original list?
I'm trying to pass a list to a function in Lisp, and change the contents of that list within the function without affecting the original list. I've read that Lisp is pass-by-value, …
4
votes
3answers
209 views
What is the difference between ‘(a b c) and (list ‘a ‘b ‘c)?
I am reading "On lisp" and encounter this code (I simplified a bit).
CL-USER> (defun foo ()
'(a b c))
FOO …
