MCPcopy Create free account
hub / github.com/brimdata/super / NewRecordIter

Function NewRecordIter

scode/iter.go:61–68  ·  view source on GitHub ↗
(bytes Bytes, nopts int)

Source from the content-addressed store, hash-verified

59}
60
61func NewRecordIter(bytes Bytes, nopts int) RecordIter {
62 it := Iter(bytes)
63 var nones []byte
64 if nopts != 0 {
65 nones = it.Next()
66 }
67 return RecordIter{nones: nones, elems: it, nopts: nopts}
68}
69
70// Next returns the next element of the record and false if its
71// present; otherwise, nil and true for None.

Callers 15

RecordIterMethod · 0.92
nthMethod · 0.92
walkRecordFunction · 0.92
WriteMethod · 0.92
recordToExprFunction · 0.92
formatRecordMethod · 0.92
decodeRecordMethod · 0.92
recMethod · 0.92
EvalMethod · 0.92
recodeMethod · 0.92
getNthFromRecordFunction · 0.92
recodeFunction · 0.92

Calls 2

IterTypeAlias · 0.85
NextMethod · 0.45

Tested by

no test coverage detected