reflect.Value.IsNil (method)
53 uses
reflect (current package)
deepequal.go#L53: return !v1.IsNil() && !v2.IsNil()
deepequal.go#L99: if v1.IsNil() != v2.IsNil() {
deepequal.go#L119: if v1.IsNil() || v2.IsNil() {
deepequal.go#L120: return v1.IsNil() == v2.IsNil()
deepequal.go#L136: if v1.IsNil() != v2.IsNil() {
deepequal.go#L155: if v1.IsNil() && v2.IsNil() {
value.go#L1311: if v.IsNil() {
value.go#L1334: if v.IsNil() {
value.go#L1544: func (v Value) IsNil() bool {
value.go#L1612: return v.IsNil()
value.go#L2068: if v.typ().Kind() == abi.Interface && v.IsNil() {
value.go#L3354: if v.Kind() == Interface && v.IsNil() {
value.go#L3436: return v.IsNil() || v.Elem().Comparable()
value.go#L3842: if v.IsNil() {
database/sql/driver
types.go#L234: rv.IsNil() &&
types.go#L266: if rv.IsNil() {
encoding/asn1
asn1.go#L1116: if v.Kind() != reflect.Pointer || v.IsNil() {
encoding/json
decode.go#L173: if rv.Kind() != reflect.Pointer || rv.IsNil() {
decode.go#L451: if v.Kind() == reflect.Interface && !v.IsNil() {
decode.go#L453: if e.Kind() == reflect.Pointer && !e.IsNil() && (!decodingNull || e.Elem().Kind() == reflect.Pointer) {
decode.go#L475: if v.IsNil() {
decode.go#L642: if v.IsNil() {
decode.go#L702: if subv.IsNil() {
encode.go#L432: if v.Kind() == reflect.Pointer && v.IsNil() {
encode.go#L455: if va.IsNil() {
encode.go#L473: if v.Kind() == reflect.Pointer && v.IsNil() {
encode.go#L491: if va.IsNil() {
encode.go#L665: if v.IsNil() {
encode.go#L696: if fv.IsNil() {
encode.go#L734: if v.IsNil() {
encode.go#L793: if v.IsNil() {
encode.go#L812: if v.IsNil() {
encode.go#L873: if v.IsNil() {
encode.go#L952: if k.Kind() == reflect.Pointer && k.IsNil() {
fmt
print.go#L343: if val.Kind() == reflect.Interface && !val.IsNil() {
print.go#L592: if v := reflect.ValueOf(arg); v.Kind() == reflect.Pointer && v.IsNil() {
print.go#L808: if f.IsNil() {
print.go#L892: if f.Kind() == reflect.Slice && f.IsNil() {
github.com/oapi-codegen/runtime
bindparam.go#L332: if v.IsNil() {
bindstring.go#L47: if v.IsNil() {
styleparam.go#L63: if v.IsNil() {
styleparam.go#L271: if f.Type().Kind() == reflect.Ptr && f.IsNil() {
internal/fmtsort
sort.go#L144: if aVal.IsNil() {
sort.go#L145: if bVal.IsNil() {
sort.go#L150: if bVal.IsNil() {
net/http/httptrace
trace.go#L189: if of.IsNil() {
trace.go#L192: if tf.IsNil() {
![]() |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |