SimonRichardson / funk

Haxe FP Library
Other
35 stars 5 forks source link

Implement a typed actor #18

Open SimonRichardson opened 11 years ago

SimonRichardson commented 11 years ago

Currently all actors utilise AnyRef, which is fine, but we could be more clever in certain places. Although AnyRef will not go from the whole code base as it's impossible....

typedef AnyRef = Dynamic;
SimonRichardson commented 11 years ago

Untyped actors done.

SimonRichardson commented 11 years ago

Unsure how to implement typed actors, more research is needed.