reflect.Value.CanSet (method)
5 uses
reflect (current package)
value.go#L365: func (v Value) CanSet() bool {
encoding/binary
binary.go#L631: if v := v.Field(i); v.CanSet() || t.Field(i).Name != "_" {
binary.go#L696: if v := v.Field(i); v.CanSet() || t.Field(i).Name != "_" {
encoding/json
decode.go#L464: if decodingNull && v.CanSet() {
decode.go#L708: if !subv.CanSet() {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |