CJ Johnson
CJ Johnson
I don't have the cycles at the moment, but it is on my list! For tracking purposes, the corresponding bug ID is 138307414
This is failing on windows, and the reason seems to be that it's inserting `\r` before each `\n`, causing the output to be different from the golden file. Is this...
Hi Johannes! I'm the author of `absl::Cleanup`, though I no longer work at Google. I just took a look at this and I think the problem comes down to the...
> I'm really liking this. A few small comments. More calling examples, ideally right after the first syntax example. "This would be invoked like this:" kind of thing. I see...
Since we decided to go a different direction for now, I think it makes sense to close this issue.
Thanks for sharing, @chandlerc! You say: > The second direction is to instead focus on the original motivation for CTAD and explore how to best craft APIs that create instances...
I wonder how the advent of forms might impact this idea. 🤔
Another potential approach: `auto` (or some other signifier) that lets you omit certain arguments to class types. ``` class Array(T:! type, N:! i32) { // stuff } var msg: Array(auto,...
Thank you for this feature request! This is not something we can prioritize, but it does seem compelling. In order to adopt this, we would need to devote time to...
Thanks for making this issue! Thinking about it myself, I worry that the parentheses imply unconditional tuple destructuring. What happens when you pattern match against, say, a struct pattern? ```...