gcassert:inline
(nulls []byte)
| 47 | |
| 48 | //gcassert:inline |
| 49 | func newNulls(nulls []byte) Nulls { |
| 50 | n := Nulls{nulls: nulls} |
| 51 | n.UnsetNulls() |
| 52 | return n |
| 53 | } |
| 54 | |
| 55 | // nullsStorageCap returns the length of the byte slice that is needed to |
| 56 | // maintain the Nulls bitmap for n elements. |
no test coverage detected
searching dependent graphs…