reflect.StructField.IsExported (method)

8 uses

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

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

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

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