MCPcopy
hub / github.com/cayleygraph/cayley / SkipQuad

Method SkipQuad

graph/quadwriter.go:332–340  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

330 return quad.Quad{}, err
331}
332func (r *quadReader) SkipQuad() error {
333 if r.it.Next(context.TODO()) {
334 return nil
335 }
336 if err := r.it.Err(); err != nil {
337 return err
338 }
339 return io.EOF
340}
341func (r *quadReader) Close() error { return r.it.Close() }

Callers

nothing calls this directly

Calls 2

NextMethod · 0.65
ErrMethod · 0.65

Tested by

no test coverage detected