type github.com/jackc/pgtype.Circle
17 uses
github.com/jackc/pgtype (current package)
circle.go#L14: type Circle struct {
circle.go#L20: func (dst *Circle) Set(src interface{}) error {
circle.go#L24: func (dst Circle) Get() interface{} {
circle.go#L35: func (src *Circle) AssignTo(dst interface{}) error {
circle.go#L39: func (dst *Circle) DecodeText(ci *ConnInfo, src []byte) error {
circle.go#L41: *dst = Circle{Status: Null}
circle.go#L71: *dst = Circle{P: Vec2{x, y}, R: r, Status: Present}
circle.go#L75: func (dst *Circle) DecodeBinary(ci *ConnInfo, src []byte) error {
circle.go#L77: *dst = Circle{Status: Null}
circle.go#L89: *dst = Circle{
circle.go#L97: func (src Circle) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
circle.go#L114: func (src Circle) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
circle.go#L129: func (dst *Circle) Scan(src interface{}) error {
circle.go#L131: *dst = Circle{Status: Null}
circle.go#L148: func (src Circle) Value() (driver.Value, error) {
pgtype.go#L282: ci.RegisterDataType(DataType{Value: &Circle{}, Name: "circle", OID: CircleOID})
pgtype.go#L899: "circle": &Circle{},
 |
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. |