(self, chars)
| 792 | yield (self.merge_chars(word_chars), word_chars) |
| 793 | |
| 794 | def extract_wordmap(self, chars) -> WordMap: |
| 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)) |
no test coverage detected