Home | History | Annotate | Download | only in builtin

Lines Matching defs:nil

70 // not nil. Values of string type are immutable.
99 // nil is a predeclared identifier representing the zero value for a
101 var nil Type // Type must be a pointer, channel, func, interface, map, or slice type
144 // (m[key]) from the map. If m is nil or there is no such element, delete
150 // Pointer to array: the number of elements in *v (even if v is nil).
151 // Slice, or map: the number of elements in v; if v is nil, len(v) is zero.
154 // if v is nil, len(v) is zero.
161 // if v is nil, cap(v) is zero.
163 // if v is nil, cap(v) is zero.
235 // panicking, or if the argument supplied to panic was nil, recover returns
236 // nil. Thus the return value from recover reports whether the goroutine is
254 // representing an error condition, with the nil value representing no error.