reflect.StructField.IsExported (method)

8 uses

	reflect (current package)
		type.go#L1017: func (f StructField) IsExported() bool {
		type.go#L2533: 	if field.IsExported() {
		type.go#L2544: 		Name:   newName(field.Name, string(field.Tag), field.IsExported(), field.Anonymous),

	encoding/asn1
		asn1.go#L914: 			if !structType.Field(i).IsExported() {
		marshal.go#L488: 			if !t.Field(i).IsExported() {

	encoding/json
		encode.go#L1124: 					if !sf.IsExported() && t.Kind() != reflect.Struct {
		encode.go#L1130: 				} else if !sf.IsExported() {

	text/template
		exec.go#L714: 			if !tField.IsExported() {