(self, chars: list)
| 795 | return WordMap(list(self.iter_extract_tuples(chars))) |
| 796 | |
| 797 | def extract_words(self, chars: list) -> list: |
| 798 | words = list(word for word, word_chars in self.iter_extract_tuples(chars)) |
| 799 | return words |
| 800 | |
| 801 | |
| 802 | def extract_words(chars: list, **kwargs) -> list: |
no test coverage detected