incongruent lambda list
- From: budden <budden-lisp@xxxxxxx>
- Date: Wed, 15 Aug 2012 15:45:42 -0700 (PDT)
Hi! Any normal blub programmer feels a pain
when faced with congruent lambda lists. What
about the following:
(defgeneric event1 (o) ...)
(defgeneric event3 (o a b) ...)
(def-overloaded-generic event (event1 event3) ...)
def-overloaded-method macro creates new
(generic?) function and a compiler macro.
Compiler macro attempts to resolve event to
either of event1 or event3 based on
signature or argument types. If it fails
to do so, it delays resolution until runtime.
.
- Follow-Ups:
- Re: incongruent lambda list
- From: Pascal J. Bourguignon
- Re: incongruent lambda list
- Prev by Date: Re: Coding style for conditional expressions: if vs when and unless
- Next by Date: Re: incongruent lambda list
- Previous by thread: DEFSETF and packages
- Next by thread: Re: incongruent lambda list
- Index(es):