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

Method Start

v2/datastore/query.go:270–278  ·  view source on GitHub ↗

Start returns a derivative query with the given start point.

(c Cursor)

Source from the content-addressed store, hash-verified

268
269// Start returns a derivative query with the given start point.
270func (q *Query) Start(c Cursor) *Query {
271 q = q.clone()
272 if c.cc == nil {
273 q.err = errors.New("datastore: invalid cursor")
274 return q
275 }
276 q.start = c.cc
277 return q
278}
279
280// End returns a derivative query with the given end point.
281func (q *Query) End(c Cursor) *Query {

Callers 2

startChildMethod · 0.45
launchHelperProcessFunction · 0.45

Calls 1

cloneMethod · 0.95

Tested by 1

launchHelperProcessFunction · 0.36