reverse

Function reverse 

Source
pub fn reverse<T>(
    args: &[Arc<dyn Array>],
) -> Result<Arc<dyn Array>, DataFusionError>
where T: OffsetSizeTrait,
Expand description

Reverses the order of the characters in the string reverse('abcde') = 'edcba'. The implementation uses UTF-8 code points as characters