SchlenkR

Results 67 comments of SchlenkR

Maybe this is related: I wondered why pipeline hints are not shown, even if the setting for pipeline hints is enabled. I then discovered this: ![grafik](https://github.com/ionide/ionide-vscode-fsharp/assets/472222/eec3027e-f060-44e9-a1b8-0277515eeaaf) When I have the...

Hint: ![grafik](https://github.com/fsprojects/FsHttp/assets/472222/b84e3ea0-3891-47dd-b68a-643bbab0576b)

527e9b6a2a8f9e1421d3ca2d23c439d413159729 99e5f269e7eb348cd6b51ae4ecca5103edbf9639

For clarification + documentation: There are 2 solutions that seems to be reaonable for an implementation: - Setting the cancellation token on "define-time" (as part of the request) - Passing...

Hi Josh. I just released v12 (https://www.nuget.org/packages/FsHttp). Could you check please if it all works for you? Thank you.

I changed my opinion which I stated earlier. Since compression is specified on http protocol level, specification of decompression should be the same for all response content functions. Therefore, it's...

A potential workaround that might work in some situations is to use inline functions with op_Explicit constraint (like for example so): ```fsharp // f: 'a (requires static member op_Explicit )...

I got some more test cases: ```fsharp let a (f: float) = f let inline div x y = x / y let divInts x y = x / y...

> We then do the division (call op_Division), and infer its return type as float, since we restricted it earlier. Ok, I think I understand; it's overload resolution in combination...

Thanks for reporting the issue @AngelMunoz and fixing it @Samuel-Dufour :) I've released and tested 10.0.0-preview2. See related PR and commits.