https://docs.python.org/3/library/typing.html#user-defined-generic-types [[ジェネリクス (Python)|ジェネリクス]]で汎用的な型を表現するために使う型変数のこと。具体的には以下の`T`。 ```python def func[T](a: T, b: T) -> T: pass ```