reflect.Value.IsValid (method)
33 uses
reflect (current package)
deepequal.go#L28: if !v1.IsValid() || !v2.IsValid() {
deepequal.go#L29: return v1.IsValid() == v2.IsValid()
deepequal.go#L148: if !val1.IsValid() || !val2.IsValid() || !deepValueEqual(val1, val2, visited) {
value.go#L1576: func (v Value) IsValid() bool {
value.go#L1931: if !iter.m.IsValid() {
value.go#L1950: if v.IsValid() {
value.go#L3049: if c.Chan.IsValid() {
value.go#L3052: if c.Send.IsValid() {
value.go#L3058: if !ch.IsValid() {
value.go#L3070: if !v.IsValid() {
value.go#L3085: if c.Send.IsValid() {
value.go#L3089: if !ch.IsValid() {
value.go#L3401: if !v.IsValid() || !u.IsValid() {
value.go#L3402: return v.IsValid() == u.IsValid()
encoding/asn1
marshal.go#L580: if !v.IsValid() {
encoding/binary
binary.go#L493: if v.IsValid() {
encoding/json
decode.go#L363: if v.IsValid() {
decode.go#L373: if v.IsValid() {
decode.go#L387: if v.IsValid() {
decode.go#L686: if !mapElem.IsValid() {
decode.go#L796: if kv.IsValid() {
encode.go#L338: if !v.IsValid() {
fmt
print.go#L372: if !v.IsValid() {
print.go#L391: case p.value.IsValid():
print.go#L747: if f.IsValid() && f.CanInterface() {
print.go#L768: if depth > 0 && value.IsValid() && value.CanInterface() {
print.go#L858: if !value.IsValid() {
net/http
transport.go#L382: if rv := reflect.ValueOf(altProto["https"]); rv.IsValid() && rv.Type().Kind() == reflect.Struct && rv.Type().NumField() == 1 {
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. |