supports_less_than¶
ソースコード¶
from titan_pylib.my_class.supports_less_than import SupportsLessThan
展開済みコード¶
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: ...