Max Heiber
Max Heiber
Example: ```erl -module(sample). -export([test/1]). -spec test(atom()) -> pid(). test(X) -> fapply(fun idz/1, X). -spec idz(Z) -> Z. idz(Z) -> Z. -spec fapply(fun((T) -> U), T) -> U. fapply(F, X) ->...
The syntax is documented in the reference: https://doc.rust-lang.org/stable/reference/patterns.html#identifier-pattern, but afaict not the meaning. **Impact** Experienced users can still get tripped up by things like: https://stackoverflow.com/questions/69845063/why-does-a-level-of-indirection-allow-omitting-mut (I'm a Rust n00b, but...
It looks like there is lifetime elision logic for [`impl trait` in return position](https://rust-lang.github.io/rfcs/1522-conservative-impl-trait.html), but these rules are not documented in the reference iuc: The following code type-checks, but does...
Thanks for your library! I noticed that [27% of the package size is RxJS](https://bundlephobia.com/[email protected]):  We're trying to keep package sizes small to reduce download times...
## Problem That the formatter defaults to non-ascii is a barrier to adoption for my team: - The pretty lambdas and arrows are perceived as being cute at the expense...
It doens't seem that Gitless changes anything from Git's concept of a "commit," but committing serves at least the following distinct purposes, with very different workflows for each: 1. When...
enables getting type-checking while enforcing --isolatedModules fix https://github.com/ivogabe/gulp-typescript/issues/613
**Expected behavior:** There is a way to get type-checking while using --isolatedModules **Actual behavior:** when passing --isolatedModules no type-checking is done. This is by design, but we want a way...
I couldn't find anything in the docs about how to write tree-sitter grammars so they have good error recovery. I'm hoping for a pointer in the right direction or (if...