Return a tuple of the completion strings (the 'text' field of each item).
(self)
| 233 | return cls(items=items, is_sorted=is_sorted) |
| 234 | |
| 235 | def to_strings(self) -> tuple[str, ...]: |
| 236 | """Return a tuple of the completion strings (the 'text' field of each item).""" |
| 237 | return tuple(item.text for item in self.items) |
| 238 | |
| 239 | # --- Sequence Protocol Functions --- |
| 240 |
no outgoing calls