Gus

Results 276 comments of Gus

I agree with having more explicit names, but ``splitAtAnySubsequence`` is a bit too long. Also note that ``splitAt`` exisits already in Core and it means at an index. What about...

I [wrote it already](https://github.com/fsharp/fslang-design/pull/709) just needs to be accepted and merged.

And here's a repro to send to FSI in one shot ``` type A = A with static member ($) (A, a: float ) = 0.0 static member ($) (A,...

Yes, it works for me as well. I wonder what was the fixing PR.

Hmm, I don't think so. I'm still on F# 6 and it seems fixed.

I just tried it again in both F#6 and F#7 my second repro works well. But the original repro (the one in the issue step by step) still fails in...

@edgarfgp note that this difference between sending all at once is not that uncommon: type inference uses "last minute" information to specialize generic functions. When you create the function and...

Now that I read your explanation I think it's also weak resolution what forces me to write the "impossible" overload https://github.com/fsprojects/FSharpPlus/blob/eb79954c0c3bc95d71c8dc84670a02f5523705bc/src/FSharpPlus/Control/Functor.fs#L112 to avoid the (intended) generic function resolving prematurely to...

Thanks for reporting it. I am aware of this limitation. This is something that requires some work and proper testing. Let's keep the issue open, in the meantime a PR...