Re: [racket] Polymorphism via compile time dispatch

2010-09-18 Thread Sam Tobin-Hochstadt
On Sat, Sep 18, 2010 at 4:57 PM, Vincent St-Amour wrote: > > http://docs.racket-lang.org/ts-guide/optimization.html > (the documentation is more complete in the nightly builds) Available here: http://pre.racket-lang.org/docs/html/ts-guide/optimization.html -- sam th sa...@ccs.neu.edu _

Re: [racket] Polymorphism via compile time dispatch

2010-09-18 Thread Vincent St-Amour
Typed Racket can do compile-time dispatch: http://docs.racket-lang.org/ts-guide/optimization.html (the documentation is more complete in the nightly builds) We do compile-time dispatch using types. We're also looking into making it possible for users to define their own type-based optimizations.

Re: [racket] Polymorphism via compile time dispatch

2010-09-18 Thread Sam Tobin-Hochstadt
On Sat, Sep 18, 2010 at 4:35 PM, Eduardo Cavazos wrote: > > The experiment is dependent upon a feature particular to Chez Scheme > described in section 11.4. "Compile-time Values and Properties" in the > user's guide: > >     http://scheme.com/csug8/syntax.html#./syntax:h4 > > In particular, I'm u