Tagged Questions

7
votes
1answer
426 views

Make clos objects printable in lisp

If you want to make CLOS objects in common lisp printable (print readably), how do you go about doing this without using anything but print and read.
6
votes
2answers
114 views

Lisp: How to override default string representation for CLOS class?

In Common Lisp, how can I override the default string representation of a CLOS class so that calls to format or princ will print something intelligible, even when objects of that class are embedded ...
5
votes
1answer
142 views

How to write (simple) macro?

I need to write a macro (with-hooks (monster method who what) &body body) for a game I'm writing. Monster is a CLOS object, method and who are strings and what is a function (#' notation). The ...
5
votes
2answers
346 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 ...
5
votes
5answers
383 views

Trying to learn: Object Reorientation, and generic functions in LISP!

im reading Practical common Lisp as a result of another question. I just read chapter 16 and 17 where you can find how LISP manages objects. But after a couple of years of thinking how Java manages ...
4
votes
2answers
59 views

specifying a slot value as a key when removing duplicates

The following code does what I want: 1 (defclass some-class () 2 ((some-slot 3 :initarg :somearg 4 :initform (error ":somearg not specified")))) 5 (defparameter *alpha* ...
4
votes
2answers
192 views

lisp: How to create temporary method specialization within a scope

In Common lisp: Redefine an existing function within a scope? the OP asked for something similar. But I want to create a method specializer, not a function. Essentially suppose that a method is ...
4
votes
1answer
136 views

Test if a class is a subclass of another class in common lisp

How do I see if one CLOS class is a subclass of another CLOS class?
3
votes
2answers
92 views

Order of (:before/:after) method invocation in CLOS?

I need some help understanding the order of execution for the following code. I create an instance of pie, using the following: (cook (make-instance 'pie)) I know lisp executes functions from most ...
3
votes
1answer
76 views

Is it possible to dynamically add one more super class in existing class

In Common-Lisp CLOS Is it possible to dynamically add one more super class in existing class. Update: I wanted to defined defassoc kind of macro that will associated some behaviour with ...
3
votes
1answer
236 views

cross-package defgeneric/defmethod in Common Lisp?

What is the right way to define a generic in package A and to provide a method for this generic in package B in CLOS? Thank you in advance! Example: (defpackage :common (:use :cl)) (in-package ...
2
votes
2answers
77 views

GNU clisp: suppressing warning message about no-applicable-method

This code works as I want, except for the warning message. In GNU Common Lisp, how do I suppress that message without suppressing other possible warning messages? 1 (defgeneric zang (x y) 2 ...
2
votes
2answers
117 views

Lisp: How can i get hold of the created instance inside initialize-instance :around method

I want to create an (:around qualified) specializer of initialize-instance for a class X that will first call-next-method and then will call make-instance of another class, supplying it with the ...
2
votes
2answers
450 views

Comparing Common Lisp with Gambit w.r.t their library access and object systems

I'm pretty intrigued by Gambit Scheme, in particular by its wide range of supported platforms, and its ability to put C code right in your Scheme source when needed. That said, it is a Scheme, which ...
2
votes
2answers
221 views

What POOP frameworks exist for Lisp and Scheme

What all nice POOP (Prototype-based Object-oriented Programming) Frameworks exists in Lisp and Scheme I know one * Sheeple But I did not find any other.
2
votes
2answers
227 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); // opens the file ...
1
vote
2answers
94 views

Strange class precedence list in sbcl

In sbcl, *(sb-mop:class-precedence-list (find-class 'cons)) ==>(#<BUILT-IN-CLASS CONS> #<BUILT-IN-CLASS LIST> #<BUILT-IN-CLASS SEQUENCE> #<BUILT-IN-CLASS T>) Isn't it ...
1
vote
2answers
155 views

Problem with access of slots in Lisp (CLOS)

I have a Node class that has an 'element' slot which contains a list with numbers and one letter, for example: '(1 2 3 b 4 5 6) (defclass node () ((element :reader get-element :writer ...
1
vote
2answers
130 views

Change an editable-text value in Allegro CL

I'm trying to change the value of an Editable-Text control in Allegro CL (version 8.0.1) by clicking a Default-Button. I've read about (setf value) but haven't found any examples. The function I ...