Don Syme
Don Syme
Based on the PR discussion thread I've clarified a number of important unresolved issues regarding the PR - most notably whether the functions should be generic, and if so what...
@abelbraaksma Yes the consistency argument is too strong IMHO - I just can't justify another abbreviation for "Line" in FSharp.Core. People got used to `printfn` (which was introduced by F#),...
As mentioned above - type abbreviations already support static member lookup. The case of `int` and `string` is indeed a clash between `int` as a value and `int` as a...
Great! See you there Vlad!
cc @cartermp
Yes this seems reasonable.
There are related questions about whether the record and union patterns (#164, #1152) can be used to implement portions of the corresponding signature patterns.
> it does sort of lead naturally into a Callable constraint > Also, a question: how will it work with SRTPs No change, you'd use an existing SRTP constraint for...
As an example in Python, note the use of `model(features, obj)` on line 5:  Also this kind of code:  can become ```fsharp override _.forward(input) = input |> layer1...
> Why do this by looking for an Invoke method? Why not have an interface (coordinated with dotnet/runtime for System.Func) `IFunc`? Partly because it's a much, much longer lead-time for...