Computes the prefix matches of the original string against its reversed version using the suffix table. # Arguments `original` - A slice of characters representing the original string. `reversed` - A slice of characters representing the reversed string. `suffix` - A slice containing the suffix table computed for the original string. # Returns Returns a vector of `usize` where each element at i
(original: &[char], reversed: &[char], suffix: &[usize])
source not stored for this graph (policy: none)
no test coverage detected