github.com/jackc/pgtype.Point.P (field)
10 uses
github.com/jackc/pgtype (current package)
point.go#L21: P Vec2
point.go#L73: return &Point{P: Vec2{x, y}, Status: Present}, nil
point.go#L116: *dst = Point{P: Vec2{x, y}, Status: Present}
point.go#L134: P: Vec2{math.Float64frombits(x), math.Float64frombits(y)},
point.go#L149: strconv.FormatFloat(src.P.X, 'f', -1, 64),
point.go#L150: strconv.FormatFloat(src.P.Y, 'f', -1, 64),
point.go#L162: buf = pgio.AppendUint64(buf, math.Float64bits(src.P.X))
point.go#L163: buf = pgio.AppendUint64(buf, math.Float64bits(src.P.Y))
point.go#L196: buff.WriteString(fmt.Sprintf("(%g,%g)", src.P.X, src.P.Y))
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |