Yield all 'value' targets, without priority
(self, key)
| 61 | yield el[1] |
| 62 | |
| 63 | def flat_matches(self, key): |
| 64 | """ Yield all 'value' targets, without priority """ |
| 65 | for val in self.dispatch(key): |
| 66 | for el in val: |
| 67 | yield el[1] # only value, no priority |
| 68 | return |
no test coverage detected