reflect.Type.FieldByName (method)

4 uses

	reflect (current package)
		type.go#L179: 	FieldByName(name string) (StructField, bool)

	go.uber.org/mock/gomock
		string.go#L34: 	_, isgomock := typ.FieldByName("isgomock")

	text/template
		exec.go#L711: 		tField, ok := receiver.Type().FieldByName(fieldName)
		exec.go#L749: 			if _, ok := etyp.FieldByName(fieldName); !ok {