Function reverse

Source
pub fn reverse(s: &str, writer: &mut impl Write)
Expand description

Reverses the characters in the given string.

ยงExample

query T
select reverse('abcdef');
----
fedcba