##// END OF EJS Templates
delta-find: split the _DeltaSearch class in two...
delta-find: split the _DeltaSearch class in two We now have things sliced small enough to have two class that use different `_iter_groups` implementation to encode their different logic. The filtering code remains to be moved, but I would rather keep this changeset simple and move them in the next.

File last commit:

r50538:e1c586b9 default
r52250:d7e2acdd default
Show More
_cmp.pyi
13 lines | 357 B | text/x-python | PythonLexer
Matt Harbison
attr: vendor 22.1.0...
r50538 from typing import Any, Callable, Optional, Type
_CompareWithType = Callable[[Any, Any], bool]
def cmp_using(
eq: Optional[_CompareWithType],
lt: Optional[_CompareWithType],
le: Optional[_CompareWithType],
gt: Optional[_CompareWithType],
ge: Optional[_CompareWithType],
require_same_type: bool,
class_name: str,
) -> Type: ...