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
51
52
53
54
55
56
57
58
/// Find the byte index of the start of the next word after `start`.
///
/// A word boundary is determined by `is_boundary`. The function skips any
/// boundary characters at `start`, then finds the next boundary after
/// non-boundary characters. Returns `text.len()` if no next word is found.
///
/// # Example
///
/// ```
/// use photon_ui::word_navigation::find_word_forward;
///
/// let text = "hello world";
/// assert_eq!(find_word_forward(text, 0, |c| c.is_whitespace()), 5);
/// assert_eq!(find_word_forward(text, 6, |c| c.is_whitespace()), 11);
/// ```
/// Find the byte index of the start of the previous word before `start`.
///
/// A word boundary is determined by `is_boundary`. The function skips any
/// boundary characters before `start`, then finds the previous boundary
/// before non-boundary characters. Returns `0` if no previous word is found.
///
/// # Example
///
/// ```
/// use photon_ui::word_navigation::find_word_backward;
///
/// let text = "hello world";
/// assert_eq!(find_word_backward(text, 11, |c| c.is_whitespace()), 6);
/// assert_eq!(find_word_backward(text, 5, |c| c.is_whitespace()), 0);
/// ```