[][src]Module algos::pattern

A module for using pattern matching algorithms.

Functions

boyer_moore

Boyer-Moore: Search for the pattern in the find parameter in a slice.

bruteforce

Brute Force: Search for the pattern in the find parameter in a slice.

horspool

Horspool: Search for the pattern in the find parameter in a slice.

karp_rabin

Karp-Rabin: Search for the pattern in the find parameter in a slice.

quick_matching

Quick: Search for the pattern in the find parameter in a slice.