const internal/abi.Interface

22 uses

	internal/abi (current package)
		type.go#L64: 	Interface
		type.go#L154: 	Interface:     "interface",
		type.go#L330: 	case Interface:
		type.go#L401: 	if t.Kind() != Interface {
		type.go#L430: 	if t.Kind() == Interface {

	internal/reflectlite
		type.go#L84: 	Interface = abi.Interface
		value.go#L229: 	case abi.Interface:
		value.go#L266: 	if v.kind() == abi.Interface {
		value.go#L301: 	case abi.Interface, abi.Slice:
		value.go#L365: 	if v.kind() == abi.Interface {
		value.go#L429: 		if v.Kind() == abi.Interface && v.IsNil() {
		value.go#L433: 			return Value{dst, nil, flag(abi.Interface)}
		value.go#L441: 		return Value{dst, target, flagIndir | flag(abi.Interface)}

	reflect
		type.go#L1269: 	if T.Kind() != abi.Interface {
		type.go#L1289: 	if V.Kind() == abi.Interface {
		type.go#L2203: 				if k := elem.Kind(); k == abi.Pointer || k == abi.Interface {
		type.go#L2803: 	if rcvr != nil && rcvr.Kind() == abi.Interface {
		value.go#L889: 	if v.typ().Kind() == abi.Interface {
		value.go#L928: 	if t.Kind() == abi.Interface {
		value.go#L2016: 	if v.typ().Kind() == abi.Interface && v.IsNil() {
		value.go#L2645: 	if v.typ().Kind() == abi.Interface {
		value.go#L3548: 		if src.Kind() == abi.Interface {