Expand description
Module for transforming a typed arrow Array
to VariantArray
.
Macrosยง
- decimal_
to_ ๐variant_ decimal - Convert a decimal value to a
VariantDecimal
- generic_
conversion_ ๐array - Convert the input array to a
VariantArray
row by row, usingmethod
requiring a generic type to downcast the generic array to a specific array type andcast_fn
to transform each element to a type compatible with Variant - generic_
conversion_ ๐single_ value - Convert the value at a specific index in the given array into a
Variant
, usingmethod
requiring a generic type to downcast the generic array to a specific array type andcast_fn
to transform the element. - non_
generic_ ๐conversion_ array - Convert the input array to a
VariantArray
row by row, usingmethod
not requiring a generic type to downcast the generic array to a specific array type andcast_fn
to transform each element to a type compatible with Variant - non_
generic_ ๐conversion_ single_ value - Convert the value at a specific index in the given array into a
Variant
. - primitive_
conversion_ ๐array - Convert the input array of a specific primitive type to a
VariantArray
row by row - primitive_
conversion_ ๐single_ value - Convert the value at a specific index in the given array into a
Variant
.