newLISP Fan Club

Forum => newLISP in the real world => Topic started by: jopython on November 09, 2014, 06:30:31 PM

Title: Multiple dispatch?
Post by: jopython on November 09, 2014, 06:30:31 PM
This was probably discussed in this forum before. Has anyone succeeded adding multiple dispatch capability to  newLisp using a macro or otherwise?

//http://en.wikipedia.org/wiki/Multiple_dispatch#Common_Lisp

If newLisp had a feature which allowed parametric polymorphism, my code will look more cleaner as it grows in size.
Title: Re: Multiple dispatch?
Post by: rrq on November 09, 2014, 07:51:19 PM
It might not satisfy a purist, but you may implement it via "dual" contexts and a faked FOOP object, as in the following example:
(define (dual a b) (list (context (sym (string a "-" b) MAIN))))

(define (collide-with a b) (:collide-with (dual (a 0) (b 0)) a b))

(context 'MAIN:asteroid-asteroid)
(define (collide-with a b)  (list "BANG" (context) a b))

(context 'MAIN:asteroid-spaceship)
(define (collide-with a b) (list "BONG" (context) a b))

(context 'MAIN:spaceship-asteroid)
(define (collide-with a b) (list "ZING" (context) a b))

(context 'MAIN:spaceship-spaceship)
(define (collide-with a b) (list "POFF" (context) a b))

Here the dual function simply creates the appropriate FOOP composition context to allow its "singular" polymorphism to apply.
Title: Re: Multiple dispatch?
Post by: jopython on November 13, 2014, 03:10:11 PM
This doesn't work. I get the following instead

(collide-with "asteroid" "asteroid") =>
   ("POFF" spaceship-spaceship "asteroid" "asteroid")

When I was expecting "BANG"
Title: Re: Multiple dispatch?
Post by: ryuo on November 13, 2014, 07:58:01 PM
Try this fixed up version:



(context 'MAIN:asteroid-asteroid)
(define (collide-with a b)  (list "BANG" (context) a b))

(context 'MAIN:asteroid-spaceship)
(define (collide-with a b) (list "BONG" (context) a b))

(context 'MAIN:spaceship-asteroid)
(define (collide-with a b) (list "ZING" (context) a b))

(context 'MAIN:spaceship-spaceship)
(define (collide-with a b) (list "POFF" (context) a b))

(context 'MAIN)

(define (dual a b) (list (context (sym (string a "-" b) MAIN))))

(define (collide-with a b) (:collide-with (dual a b) a b))

(println (collide-with "asteroid" "asteroid"))

(exit)


Part of the problem with the original was it expected the arguments to be strings embedded in a list.
Title: Re: Multiple dispatch?
Post by: rrq on November 13, 2014, 08:29:21 PM
Well, yes, I had assumed one would be dealing with "typed" arguments, such as, say, (android 544) and (spaceship 345) etc, and not just argument types. In any case the point is to map the apparent plurality into a singular form, and then use the FOOP polymorphic dispatch.