Documentation ¶
Overview ¶
Package fuzzysearch provides tiny and blazing-fast fuzzy search in Go
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Find ¶
Find returns all matches, sorted by levenshtein distance.
Example ¶
elems := []string{"cartwheel", "foobar", "wheel", "baz"} pattern := "whl" fmt.Println(Find(elems, pattern))
Output: [wheel cartwheel]
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.