supports_less_than

ソースコード

from titan_pylib.my_class.supports_less_than import SupportsLessThan

view on github

展開済みコード

1# from titan_pylib.my_class.supports_less_than import SupportsLessThan
2from typing import Protocol
3
4
5class SupportsLessThan(Protocol):
6
7    def __lt__(self, other) -> bool: ...

仕様

class SupportsLessThan(*args, **kwargs)[source]

Bases: Protocol