time.Time.Month (method)

4 uses

	time (current package)
		time.go#L487: func (t Time) Month() Month {

	archive/zip
		struct.go#L243: 	fDate = uint16(t.Day() + int(t.Month())<<5 + (t.Year()-1980)<<9)

	github.com/jackc/pgtype
		date.go#L183: 		tUnix := time.Date(src.Time.Year(), src.Time.Month(), src.Time.Day(), 0, 0, 0, 0, time.UTC).Unix()
		timestamp.go#L42: 		*dst = Timestamp{Time: time.Date(value.Year(), value.Month(), value.Day(), value.Hour(), value.Minute(), value.Second(), value.Nanosecond(), time.UTC), Status: Present}