Determines whether objects is sizable
(value: Any)
| 711 | |
| 712 | |
| 713 | def _is_iterator(value: Any) -> TypeGuard[Iterator]: |
| 714 | """Determines whether objects is sizable""" |
| 715 | return hasattr(value, "__next__") |
| 716 | |
| 717 | |
| 718 | def has_any_completions(result: MatcherResult) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…