Слава Україні! Героям слава!
Слава Україні! Героям слава!
Please feel free to ignore/close if not a real issue. Seems to be affecting mostly properties on generic types. Here are some of the errors I get when trying to...
The current `Array.compareWith` implementation in Fable is inconsistent with the F# implementation and [documentation](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-collections-arraymodule.html#compareWith). Here is an example: ```fs let a = [|1;3|] let b = [|1;2;3|] // compares lengths...
### Feature tracking issue for `Rust` language support: (see also previous list in #2523) - [x] Rust AST - [x] Rust AST Printer - [ ] `Fable2Rust`: - [x] modules...
- Erase unions and records to named tuples, behind a compiler switch. - This is experimental and WIP.
- Faster than F# linked list, when micro-benchmarked. - Overall, still slower in larger tests (FCS-JS) than using JS linked list.
```fs type Node = val X: int new (x: int) = { X = x } type Leaf = inherit Node val Y: string new (x: int, y: string) =...
- Removed usage counting to avoid edge cases.
Here are a few fixes and updates to the corlib and JIT: - Better C# support (added some missing JIT features, some bug fixes and updates). - Added F# support...
@MangelMaxime Do you think it makes sense to go back to tagging changes in changelog with applicable languages, instead of having to repeat the same change in all applicable language...
The tooltip for `type Complex = { r : double; i : double }` looks like that: ``` type Complex = {"input":" "}{r: double; {"input":" "}i: double;} Full name: Program.Complex...