Robert Campbell

Results 45 comments of Robert Campbell

> Repro? ``` struct Event { } delegate void HandleEventCallback(T ev) where T : Event; struct EventHandle { public int Id; } struct EventHandle : EventHandle where T : Event...

> Fixed at [6302416](https://github.com/beefytech/Beef/commit/6302416e403c9b2900ab229e950f2cc3e0f801ec) This was a pretty serious issue with generic constraints on delegates. > > It would have been nice to have this issue be a separate GH...

> Okay. But I'm also wondering why you didn't do those generic like `Math.Lerp` - were you expecting a speed benefit by hand-rolling all possible combinations? No, just copy+paste from...

Btw, if I change from: ``` (int64)-20 ``` to ``` int64(-20) ``` then it compiles without error.

Thanks for the feedback. I implemented the last 2. For the first 1, sounds like a good idea. So this would be able to give contextual autocomplete suggestions too, if...