Russ Cox

Results 790 comments of Russ Cox

This proposal has been added to the [active column](https://go.dev/s/proposal-status#active) of the proposals project and will now be reviewed at the weekly proposal review meetings. — rsc for the proposal review...

The question is what happens with 'go env -changed GOPATH GOROOT GOMODCACHE' for example. Without -changed, this would print ``` % go env GOROOT GOPATH GOMODCACHE /Users/rsc/go /Users/rsc /Users/rsc/pkg/mod %...

Have all remaining concerns about this proposal been addressed? The proposal is to add a new flag to go env: ‘go env -changed’. With no other flags or arguments, ‘go...

Based on the discussion above, this proposal seems like a **[likely accept](https://go.dev/s/proposal-status#likely-accept)**. — rsc for the proposal review group The proposal is to add a new flag to go env:...

No change in consensus, so **[accepted](https://go.dev/s/proposal-status#accepted)**. 🎉 This issue now tracks the work of implementing the proposal. — rsc for the proposal review group The proposal is to add a...

It seems clear that Encode(&v) should return `{"X":1}`. What's less clear is Encode(v). It can't return `{"X":1}` and today it returns `{"X":true}` but perhaps it should instead return an error...

To elaborate a bit, this is happening because the orbit tables in simpleFold _must_ match the calls to toLower/toUpper in simpleFold. Otherwise simpleFold does not provide its documented guarantee that...

According to Unicode definition of simple folding, `(?i)k` needs to match k (U+006B), K (U+004B), and K (U+212A, Kelvin sign). There is no way to start at lowercase k and...

RE2/J can avoid calculating orbits if it gives up on complex character classes being precompiled down to basic ranges. It would instead have to represent character classes as more complex...