github.com/jackc/pgtype.Hstore.Map (field)

10 uses

	github.com/jackc/pgtype (current package)
		hstore.go#L19: 	Map    map[string]Text
		hstore.go#L42: 		*dst = Hstore{Map: m, Status: Present}
		hstore.go#L53: 		return dst.Map
		hstore.go#L66: 			*v = make(map[string]string, len(src.Map))
		hstore.go#L67: 			for k, val := range src.Map {
		hstore.go#L103: 	*dst = Hstore{Map: m, Status: Present}
		hstore.go#L156: 	*dst = Hstore{Map: m, Status: Present}
		hstore.go#L172: 	for k, v := range src.Map {
		hstore.go#L205: 	buf = pgio.AppendInt32(buf, int32(len(src.Map)))
		hstore.go#L208: 	for k, v := range src.Map {