type reflect.StructField
34 uses
reflect (current package)
badlinkname.go#L61: func badlinkname_rtype_Field(*rtype, int) StructField
badlinkname.go#L67: func badlinkname_rtype_FieldByIndex(*rtype, []int) StructField
badlinkname.go#L70: func badlinkname_rtype_FieldByName(*rtype, string) (StructField, bool)
badlinkname.go#L73: func badlinkname_rtype_FieldByNameFunc(*rtype, func(string) bool) (StructField, bool)
map.go#L107: fields := []StructField{
map.go#L119: fields = []StructField{
type.go#L178: Field(i int) StructField
type.go#L183: Fields() iter.Seq[StructField]
type.go#L189: FieldByIndex(index []int) StructField
type.go#L196: FieldByName(name string) (StructField, bool)
type.go#L214: FieldByNameFunc(match func(string) bool) (StructField, bool)
type.go#L772: func (t *rtype) Field(i int) StructField {
type.go#L780: func (t *rtype) FieldByIndex(index []int) StructField {
type.go#L788: func (t *rtype) FieldByName(name string) (StructField, bool) {
type.go#L796: func (t *rtype) FieldByNameFunc(match func(string) bool) (StructField, bool) {
type.go#L960: func (t *rtype) Fields() iter.Seq[StructField] {
type.go#L964: return func(yield func(StructField) bool) {
type.go#L1081: type StructField struct {
type.go#L1098: func (f StructField) IsExported() bool {
type.go#L1183: func (t *structType) Field(i int) (f StructField) {
type.go#L1232: func (t *structType) FieldByIndex(index []int) (f StructField) {
type.go#L1255: func (t *structType) FieldByNameFunc(match func(string) bool) (result StructField, ok bool) {
type.go#L1318: return StructField{}, false
type.go#L1361: func (t *structType) FieldByName(name string) (f StructField, present bool) {
type.go#L1914: funcTypes[n] = StructOf([]StructField{
type.go#L2274: func StructOf(fields []StructField) Type {
type.go#L2473: tt := New(StructOf([]StructField{
type.go#L2616: func runtimeStructField(field StructField) (structField, string) {
value.go#L2644: func (v Value) Fields() iter.Seq2[StructField, Value] {
value.go#L2649: return func(yield func(StructField, Value) bool) {
visiblefields.go#L16: func VisibleFields(t Type) []StructField {
visiblefields.go#L26: fields: make([]StructField, 0, t.NumField()),
visiblefields.go#L52: fields []StructField
encoding/json
decode.go#L149: Field reflect.StructField
 |
The pages are generated with Golds v0.8.4. (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. |