Cole Tobin

Results 94 comments of Cole Tobin

You ignored my point about `nameof()`. If `nameof` is in scope at all, I can't use the `nameof` "operator". Sure, "no one" is writing a method called `nameof`, but the...

Rust is indeed a great example with ["editions"](https://doc.rust-lang.org/edition-guide/introduction.html). If language semantics change in a new edition, a simple `cargo fix --edition` will [patch-up the code to work on the new...

It seems the area check should be *before* the keep together/next check. We want to see if the table overflows before seeing if the next item should be computed. Regardless,...

When would a starting index *not* be inclusive? If I do `str[5..7]`, I would expect it *starts* the slice at index five.

Here's 16.0.17628.20110 (SHA256 `450c907b8137ae61cf89ee65dc93c9e4f3cd4680082c51c41fe5d03f9be91408`) [EXCEL.zip](https://github.com/user-attachments/files/15837374/EXCEL.zip)

Same issue with YouTrack. Managed to track it down to this extension.

Yes, Avalonia XAML is not valid XML in styles.

Presumably, `param scoped ref` could allow the compiler to reuse the allocated span.

Sounds like we need lifetimes ala Rust ;) ```csharp Span['b] M(scoped ref Span['a] s) where 'b : 'a => s; ```