Searched defs:int32BufferBuilder (Results 1 – 4 of 4) sorted by relevance
27 type int32BufferBuilder struct { struct28 bufferBuilder36 func (b *int32BufferBuilder) AppendValues(v []int32) { b.Append(arrow.Int32Traits.CastToBytes(v)) }42 func (b *int32BufferBuilder) Values() []int32 { return arrow.Int32Traits.CastFromBytes(b.Bytes()) }45 func (b *int32BufferBuilder) Value(i int) int32 { return b.Values()[i] }48 func (b *int32BufferBuilder) Len() int { return b.length / arrow.Int32SizeBytes }51 func (b *int32BufferBuilder) AppendValue(v int32) {