TyOverby / ares

A Lisp made for easy integration with Rust.
9 stars 1 forks source link

Statically dispatch to core methods and arithmetic #28

Open TyOverby opened 9 years ago

TyOverby commented 9 years ago

Right now we are paying for dynamic dispatch for all core and arithmetic methods. In order to speed up compute-intensive work, we should statically call out to these if core gets loaded.

Not loading core would let people override the functions as usual.

I want to do this after #23 is done.