Returns the elementwise concatenation of a [`GenericBinaryArray`].
(
left: &GenericBinaryArray<Offset>,
right: &GenericBinaryArray<Offset>,
)
| 95 | |
| 96 | /// Returns the elementwise concatenation of a [`GenericBinaryArray`]. |
| 97 | pub fn concat_element_binary<Offset: OffsetSizeTrait>( |
| 98 | left: &GenericBinaryArray<Offset>, |
| 99 | right: &GenericBinaryArray<Offset>, |
| 100 | ) -> Result<GenericBinaryArray<Offset>, ArrowError> { |
| 101 | concat_elements_bytes(left, right) |
| 102 | } |
| 103 | |
| 104 | /// Returns the elementwise concatenation of [`StringArray`]. |
| 105 | /// ```text |
no test coverage detected