1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/// Reverses the input string.
///
/// This function returns a new `String` where the characters
/// of the input string `s` are reversed in order.
///
/// # Examples
///
/// ```rust
/// use lo_::str_rev;
/// let original = "hello";
/// let reversed = str_rev(original);
/// assert_eq!(reversed, "olleh");
///
/// let unicode = "你好";
/// let reversed_unicode = str_rev(unicode);
/// assert_eq!(reversed_unicode, "好你");
///
/// ```
///
/// # Note
///
/// This function reverses by Unicode scalar values, so it handles
/// multi-byte UTF-8 characters correctly.