reflect.StructField.IsExported (method)

9 uses

	reflect (current package)
		type.go#L1157: func (f StructField) IsExported() bool {
		type.go#L2837: 	if field.IsExported() {
		type.go#L2853: 		name:        newName(field.Name, string(field.Tag), field.IsExported()),

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

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

	encoding/xml
		typeinfo.go#L63: 			if (!f.IsExported() && !f.Anonymous) || f.Tag.Get("xml") == "-" {

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