reverse
returns a copy of the given string/vector with the characters/items
inreverse order.
(reverse "abc")
➜"cba"
(reverse [1 2 3])
➜[3 2 1]
source
is an arbitrary expression.
Returns the reverse of the input strings, i.e. a string with the order of all bytes flipped.
source
is an arbitrary expression.
Returns a copy of the source vector with items in the opposite order of the source.