roboz0r

Results 18 comments of roboz0r

Should be resolved by this PR https://github.com/Zaid-Ajaj/Feliz/pull/330

Here's a reasonably efficient immutable FIFO implementation with Lists. Reverse is only called when the outgoing list is empty and the incoming has built up items so execution is typically...

Would it be possible to create another type of error e.g. `OptimisableError`, which signifies a piece of code has produced an error at a certain phase of compilation which may...

@smoothdeveloper No luck sadly. I added `--compilertool:C:\...\net6.0-windows` which was the path to the directory containing `FSharp.DependencyManager.Nuget.dll`, `FSharp.Compiler.Service.dll`, `FSharp.Core` etc. I also tried various combinations `/compilertool` instead of `--`, `--compilertool:C:\...\net6.0-windows\FSharp.DependencyManager.Nuget.dll`. This...

That worked! Or at least compilation was successful. Now it fails when I try to call the function with: ``` TargetInvocationException: Could not load file or assembly 'FSharp.Data, Version=4.2.8.0, Culture=neutral,...

I've come up with a solution that seems to work. Pasting below so that others can make use of it: ```fsharp open System open System.IO open System.Reflection open System.Runtime.Loader open...

My thought was to somehow tell the compiler that a DU tagged with `StringEnum` was compatible with `string` rather than physically inserting `static member inline op_Implicit (x: MyType ) :...

> provide perf-oriented people to write custom struct DU's This would be good not just for perf reasons but low-level interop in general. I'm working with a C API using...

I had a similar issue where my assemblies are loaded twice: Once by the native exports and once by COM into the same process. My solution to communication between the...

My project isn't open source but I can share the relevant parts for RPC. Code is in F# but it shouldn't be too difficult to turn back into C# if...