Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Stem ¶
Stem is the entry function into the stemmer. We check to make sure the word isn't too short, and then we convert it to all uppercase
func StemConcurrent ¶
func StemConcurrent(words *[]string)
StemConcurrent accepts a pointer to a slice of strings and stems them in place. It tries to offload the work into multiple threads. It makes no guarantees about the order of the stems in the modified slice.
func StemMultiple ¶
StemMultiple accepts a slice of strings and stems each of them.
func StemMultipleMutate ¶
func StemMultipleMutate(words *[]string)
StemMultipleMutate accepts a pointer to a slice of strings and stems them in place. It modifies the original slice.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.