Lukas Rieger
Lukas Rieger
I would be really interested in being able to run xBim on .NET Core (3.1 and/or 5), even if that is constrained to windows due to the native dependency. I've...
I have merged the current master into the NetCoreApp31 branch here: https://github.com/xBimTeam/XbimGeometry/pull/355 Unit Tests are green and I'm going to test it in my product soon(ish). @bekraft Yes, this branch...
I would definitely prefer it if it were implemented as narrow as possible: * Only allow a single if, no else and no elif (because then you should use match)....
What about ```fsharp if let (Some x) = a || let (Some x) = b then doSomething x else doNothing () ``` ?
Would it be possible to generalize this and allow to apply uom to __all__ types? Why not ``System.IO.Stream``? How would this work with types that are already generic? ``List``? looks...
Do you think it would be a) possible and b) desirable to restore binary compat between 3.x and 4.x, or was the break on purpose to be able to clean...
hi @smoothdeveloper , I'm currently working on something similar (a local multi-machine cluster), and got it working with the following code: A few notes: - Workers are sub-processes, so you...
As WCF is deprecated, we want to move to gRPC. As far as I understand it, this feature request would enable the equivalent to client callbacks. ------------------ Use Case: We...
Could this be prototyped outside of FSharp.Core with an Extension Method to the async builder? https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/computation-expressions#extending-existing-builders-with-new-custom-operations
> It seems to me that the syntax is already available to do what you want: ``` let testFunction (Union.CaseB case) = case ``` this pattern match allows you to...