nelhage / gojit

JIT code-generation in Go!
MIT License
338 stars 34 forks source link

example for JIT-ing a reflect.Func #6

Open sbinet opened 10 years ago

sbinet commented 10 years ago

hi,

it would be very interesting to be able to JIT, say, a simple reflect.Func or an equivalently simple go func(). The obvious use-case being a decoder/encoder (un|de)serialization layer...

I'd be happy with an adder func() to start with :)

-s