reflect.rtype.String (method)
46 uses
reflect (current package)
type.go#L755: func (t *rtype) String() string {
type.go#L771: panic("reflect: Bits of non-arithmetic Type " + t.String())
type.go#L873: s := t.String()
type.go#L883: panic("reflect: ChanDir of non-chan type " + t.String())
type.go#L891: panic("reflect: IsVariadic of non-func type " + t.String())
type.go#L915: panic("reflect: Elem of invalid type " + t.String())
type.go#L920: panic("reflect: Field of non-struct type " + t.String())
type.go#L928: panic("reflect: FieldByIndex of non-struct type " + t.String())
type.go#L936: panic("reflect: FieldByName of non-struct type " + t.String())
type.go#L944: panic("reflect: FieldByNameFunc of non-struct type " + t.String())
type.go#L952: panic("reflect: In of non-func type " + t.String())
type.go#L960: panic("reflect: Key of non-map type " + t.String())
type.go#L968: panic("reflect: Len of non-array type " + t.String())
type.go#L976: panic("reflect: NumField of non-struct type " + t.String())
type.go#L984: panic("reflect: NumIn of non-func type " + t.String())
type.go#L992: panic("reflect: NumOut of non-func type " + t.String())
type.go#L1000: panic("reflect: Out of non-func type " + t.String())
type.go#L1393: s := "*" + t.String()
type.go#L1728: if !(rtypeOff(section, offs[h]).String() >= s) {
type.go#L1741: if typ.String() != s {
type.go#L1799: s = "chan<- " + typ.String()
type.go#L1801: s = "<-chan " + typ.String()
type.go#L1803: typeStr := typ.String()
type.go#L1847: panic("reflect.MapOf: invalid key type " + ktyp.String())
type.go#L1857: s := "map[" + ktyp.String() + "]" + etyp.String()
type.go#L2065: repr = append(repr, (*sliceType)(unsafe.Pointer(t)).elem.String()...)
type.go#L2067: repr = append(repr, t.String()...)
type.go#L2081: repr = append(repr, t.String()...)
type.go#L2110: panic("isReflexive called on non-key type " + t.String())
type.go#L2137: panic("needKeyUpdate called on non-key type " + t.String())
type.go#L2231: s := "bucket(" + ktyp.String() + "," + etyp.String() + ")"
type.go#L2297: s := "[]" + typ.String()
type.go#L2419: panic("reflect.StructOf: illegal embedded field type " + ft.String())
type.go#L2558: repr = append(repr, (" " + ft.String())...)
type.go#L2820: panic("reflect.typeptrdata: unexpected type, " + t.String())
type.go#L2842: s := "[" + strconv.Itoa(count) + "]" + typ.String()
type.go#L3003: panic("reflect: funcLayout of non-func type " + t.String())
type.go#L3006: panic("reflect: funcLayout with interface receiver " + rcvr.String())
type.go#L3055: s = "methodargs(" + rcvr.String() + ")(" + t.String() + ")"
type.go#L3057: s = "funcargs(" + t.String() + ")"
value.go#L2451: panic(context + ": value of type " + v.typ.String() + " is not assignable to type " + dst.String())
value.go#L2463: panic("reflect.Value.Convert: value of type " + v.typ.String() + " cannot be converted to type " + t.String())
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |