Search found 4 matches

by qiemem
Fri Mar 13, 2009 2:29 pm
Forum: Common Lisp
Topic: Beginner question: Package documentation?
Replies: 3
Views: 10560

Re: Beginner question: Package documentation?

tinaa looks sweet, but unfortunately I get The function METABANG.UTILITIES:DIRECTORY-NAME-P is undefined. [Condition of type UNDEFINED-FUNCTION] every time I try to use it. I installed it with asdf-install, but I think I might have messed something up. However, in emacs, slime-apropros-package does ...
by qiemem
Thu Mar 12, 2009 3:32 pm
Forum: Common Lisp
Topic: Beginner question: Package documentation?
Replies: 3
Views: 10560

Beginner question: Package documentation?

I've downloaded a couple of packages using asdf-install, but I can't find the documentation for them online anywhere. Is there a way to view documentation for package from a repl? For instance, is there a function that will print a list of all the functions provided by a package? I've tried to use '...
by qiemem
Sun Jan 18, 2009 7:14 pm
Forum: Common Lisp
Topic: [newbie] evaluating a list as an expression
Replies: 5
Views: 11262

Re: [newbie] evaluating a list as an expression

First, why are you even trying to do that? I made some functions to generate random logical expressions and will write a program that generates programs which take in as input these expressions and output truth values for each of the variables. I need a function that tests the answers the generated...
by qiemem
Sat Jan 17, 2009 8:23 pm
Forum: Common Lisp
Topic: [newbie] evaluating a list as an expression
Replies: 5
Views: 11262

[newbie] evaluating a list as an expression

Hi all, I'm trying to write a function that takes in a list (well, any expression actually), a list of symbols, and a list of values for those symbols, and then evaluates that list as an expression with those symbols assigned to those values. Perhaps my current attempt will explain this better than ...