Seb C

Results 6 comments of Seb C

How about adding a tag to the line (block of lines) that shouldn't be mutated? Perhaps something like: `// +go-mutesting: blacklist` at the end of the line. Or for a...

In the context of the provided [example](https://go.googlesource.com/proposal/+/master/design/43651-type-parameters.md#no-parameterized-methods). Isn't: ```go func (S) Identity[T any](v T) T { return v } ``` syntactic sugar for: ```go func Identity[T any](_ S, v T)...

Does that mean we are reaching the limits of what can be achieved with implicit interfaces? What would the introduction of explicit interfaces do to help with this issue and...

Is there such a concept as a compile-time call-graph? From `p3` outwards, there is no way to tell how to instantiate `vi.Identity[int](0)` because p3 doesn't know what `v` is by...

Hi, Up-voting this issue. We are using go.mod but as we depend on the Context-aware methods, we cannot lock on a release and are forced to use a v0.0.0-commit-style dependency....

Correct but as noted above this is more volatile with go.mod because v0.0.0-commit is considered older than say v0.3.1