mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 22:11:54 +08:00
5 lines
177 B
Python
5 lines
177 B
Python
from typing import Hashable, Iterable
|
|
|
|
def eval(a: Iterable[Hashable], b: Iterable[Hashable]) -> int: ...
|
|
def distance(a: Iterable[Hashable], b: Iterable[Hashable]) -> int: ...
|