[][src]Function git_anger_management::core::split_into_clean_words

pub fn split_into_clean_words(input: &str) -> impl Iterator<Item = &str>

Cleans a string and returns a list containing the cleaned up words.

Of note here is that the implementation splits on any character that is not a letter, even if it is in the middle of a "word". This should not be a problem.