Don Syme

Results 1218 comments of 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...

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: ![image](https://user-images.githubusercontent.com/7204669/136834568-0668f429-b4f9-440b-ab6a-18f5d86c4449.png) Also this kind of code: ![image](https://user-images.githubusercontent.com/7204669/136834684-32bfda80-6316-4c09-abc9-632963f618fa.png) 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...