TimestampArrayBuilder.appendValues

Append multiple values at once. It's more efficient than multiple append and append_null calls.

class TimestampArrayBuilder
bool
appendValues
(
long[] values
,
bool[] isValids = null
)

Parameters

values long[]

The array of the number of milliseconds since UNIX epoch in signed 64bit integer.

isValids bool[]

The array of boolean that shows whether the Nth value is valid or not. If the Nth is_valids is true, the Nth values is valid value. Otherwise the Nth value is null value.

Return Value

Type: bool

true on success, false if there was an error.