reflect.Value.IsValid (method, view implemented interface methods)

35 uses

	reflect (current package)
		deepequal.go#L28: 	if !v1.IsValid() || !v2.IsValid() {
		deepequal.go#L29: 		return v1.IsValid() == v2.IsValid()
		deepequal.go#L149: 			if !val1.IsValid() || !val2.IsValid() || !deepValueEqual(val1, val2, visited) {
		value.go#L1569: func (v Value) IsValid() bool {
		value.go#L1983: 	if !iter.m.IsValid() {
		value.go#L2002: 	if v.IsValid() {
		value.go#L3121: 			if c.Chan.IsValid() {
		value.go#L3124: 			if c.Send.IsValid() {
		value.go#L3130: 			if !ch.IsValid() {
		value.go#L3142: 			if !v.IsValid() {
		value.go#L3157: 			if c.Send.IsValid() {
		value.go#L3161: 			if !ch.IsValid() {
		value.go#L3467: 	if !v.IsValid() || !u.IsValid() {
		value.go#L3468: 		return v.IsValid() == u.IsValid()

	encoding/asn1
		marshal.go#L577: 	if !v.IsValid() {

	encoding/binary
		binary.go#L706: 		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#L798: 			if kv.IsValid() {
		encode.go#L337: 	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() {

	github.com/oapi-codegen/runtime
		bindform.go#L132: 		if !ptrData.IsValid() {
		bindform.go#L136: 		if err == nil && ptrHasData && !v.Elem().IsValid() {

	net/http
		transport.go#L382: 	if rv := reflect.ValueOf(altProto["https"]); rv.IsValid() && rv.Type().Kind() == reflect.Struct && rv.Type().NumField() == 1 {