Ayaz
Ayaz
A number of our existing tests (targeting rustfmt on master) have poor formatting of return types that don't align with the changes made in #4368: https://github.com/rust-lang/rustfmt/blob/f817383f9c3c4b5be9fdd77a034ba18dd3bd0da3/tests/target/issue-3278.rs#L1-L2 https://github.com/rust-lang/rustfmt/blob/f817383f9c3c4b5be9fdd77a034ba18dd3bd0da3/tests/target/long-fn-1.rs#L18-L19 https://github.com/rust-lang/rustfmt/blob/f817383f9c3c4b5be9fdd77a034ba18dd3bd0da3/tests/target/issue-2672.rs#L30-L31 https://github.com/rust-lang/rustfmt/blob/f817383f9c3c4b5be9fdd77a034ba18dd3bd0da3/tests/target/issue-2672.rs#L48-L49 I...
Hey Orta, would have any interest in extending this library to support generation for multiple languages? I recently added support for Rust to this library in a local fork (here...
This patch resolves what appears to be a long standing TODO to implement this method. A test to check for exhaustiveness of the builder is included, though this may be...
Instead, suggest prefixing it with an underscore, or replacing with an underscore. Closes #3820
A key thing about unbound extension variables is that they provide no information. For example, given a type `[A Str]b`, one cannot do anything with `b` until it is resolved...
Supports stuff like ``` decoded = Str.toUtf8 "{\"first\":\"ab\",\"second\":\"cd\"}" |> Decode.fromBytes Json.fromUtf8 when decoded is Ok rcd -> Str.concat rcd.first rcd.second _ -> "something went wrong" ```
It's possible to end up in a situation where you attempt to specialize a symbol while it's being specialized for another type; see the examples in the diff. In this...
Supersedes #3617, as this takes a slightly different approach and #3617 is now outdated from main.