MCPcopy Create free account
hub / github.com/uptrace/bun / Next

Method Next

dialect/pgdialect/array_parser.go:36–42  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

34}
35
36func (p *arrayParser) Next() bool {
37 if p.err != nil {
38 return false
39 }
40 p.err = p.readNext()
41 return p.err == nil
42}
43
44func (p *arrayParser) Err() error {
45 if p.err != io.EOF {

Callers 8

arrayScannerFunction · 0.45
decodeStringSliceFunction · 0.45
decodeIntSliceFunction · 0.45
decodeInt64SliceFunction · 0.45
scanFloat64SliceFunction · 0.45
TestArrayParserFunction · 0.45
TestHStoreParserFunction · 0.45
decodeMapStringStringFunction · 0.45

Calls 1

readNextMethod · 0.95

Tested by 2

TestArrayParserFunction · 0.36
TestHStoreParserFunction · 0.36