github.com/jackc/pgx/v5/pgtype.Vec2.Y (field)

18 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		box.go#L103: 	buf = pgio.AppendUint64(buf, math.Float64bits(box.P[0].Y))
		box.go#L105: 	buf = pgio.AppendUint64(buf, math.Float64bits(box.P[1].Y))
		box.go#L123: 		strconv.FormatFloat(box.P[0].Y, 'f', -1, 64),
		box.go#L125: 		strconv.FormatFloat(box.P[1].Y, 'f', -1, 64),
		circle.go#L104: 	buf = pgio.AppendUint64(buf, math.Float64bits(circle.P.Y))
		circle.go#L123: 		strconv.FormatFloat(circle.P.Y, 'f', -1, 64),
		lseg.go#L103: 	buf = pgio.AppendUint64(buf, math.Float64bits(lseg.P[0].Y))
		lseg.go#L105: 	buf = pgio.AppendUint64(buf, math.Float64bits(lseg.P[1].Y))
		lseg.go#L123: 		strconv.FormatFloat(lseg.P[0].Y, 'f', -1, 64),
		lseg.go#L125: 		strconv.FormatFloat(lseg.P[1].Y, 'f', -1, 64),
		path.go#L114: 		buf = pgio.AppendUint64(buf, math.Float64bits(p.Y))
		path.go#L148: 			strconv.FormatFloat(p.Y, 'f', -1, 64),
		point.go#L17: 	Y float64
		point.go#L108: 	buff.WriteString(fmt.Sprintf("(%g,%g)", src.P.X, src.P.Y))
		point.go#L161: 	buf = pgio.AppendUint64(buf, math.Float64bits(point.P.Y))
		point.go#L179: 		strconv.FormatFloat(point.P.Y, 'f', -1, 64),
		polygon.go#L107: 		buf = pgio.AppendUint64(buf, math.Float64bits(p.Y))
		polygon.go#L133: 			strconv.FormatFloat(p.Y, 'f', -1, 64),