func()

in pkg/resultset/resultset.go [59:68]


func (s ResultSet) TotalDigits() int64 {
	total := int64(0)
	for _, v := range s {
		if v.Header.TotalDigits != 0 {
			return v.Header.TotalDigits
		}
		total += v.Header.BlockSize
	}
	return total
}