MCPcopy Create free account
hub / github.com/golang/appengine / String

Method String

datastore/key.go:149–156  ·  view source on GitHub ↗

String returns a string representation of the key.

()

Source from the content-addressed store, hash-verified

147
148// String returns a string representation of the key.
149func (k *Key) String() string {
150 if k == nil {
151 return ""
152 }
153 b := bytes.NewBuffer(make([]byte, 0, 512))
154 k.marshal(b)
155 return b.String()
156}
157
158type gobKey struct {
159 Kind string

Callers 9

keyToProtoFunction · 0.45
valueToProtoFunction · 0.45
saveStructPropertyFunction · 0.45
propertiesToProtoFunction · 0.45
query_test.goFile · 0.45
fakeRunQueryFunction · 0.45
TestQueryToProtoFunction · 0.45
handleMainPageFunction · 0.45
handleSignFunction · 0.45

Calls 1

marshalMethod · 0.95

Tested by 2

fakeRunQueryFunction · 0.36
TestQueryToProtoFunction · 0.36