(first: Sequence[T], second: Sequence[T])
| 274 | |
| 275 | |
| 276 | def list_equiv(first: Sequence[T], second: Sequence[T]) -> bool: |
| 277 | if len(first) != len(second): |
| 278 | return False |
| 279 | return all(itertools.starmap(equivalent, zip(first, second, strict=True))) |
| 280 | |
| 281 | |
| 282 | def peek_at(iterable: Iterable[T]) -> tuple[T, Iterator[T]]: |
no outgoing calls
no test coverage detected
searching dependent graphs…