1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
# --------------------------------------------------------------------------------------
# Copyright (c) 2021-2024, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# --------------------------------------------------------------------------------------
from typing import Any, List, Optional, Tuple, Type, TypeVar, overload
from .catom import Member
T = TypeVar("T")
T1 = TypeVar("T1")
T2 = TypeVar("T2")
class ContainerList(Member[List[T], List[T]]):
# No default
@overload
def __new__(
cls, kind: None = None, default: Optional[List[Any]] = None
) -> ContainerList[Any]: ...
@overload
def __new__(cls, kind: Type[T], default: None = None) -> ContainerList[T]: ...
@overload
def __new__(
cls, kind: Tuple[Type[T]], default: None = None
) -> ContainerList[T]: ...
@overload
def __new__(
cls, kind: Tuple[Type[T], Type[T1]], default: None = None
) -> ContainerList[T | T1]: ...
@overload
def __new__(
cls,
kind: Tuple[Type[T], Type[T1], Type[T2]],
default: None = None,
) -> ContainerList[T | T1 | T2]: ...
@overload
def __new__(
cls, kind: Member[T, Any], default: None = None
) -> ContainerList[T]: ...
# With default
@overload
def __new__(cls, kind: Type[T], default: List[T]) -> ContainerList[T]: ...
@overload
def __new__(cls, kind: Tuple[Type[T]], default: List[T]) -> ContainerList[T]: ...
@overload
def __new__(
cls, kind: Tuple[Type[T], Type[T1]], default: List[T | T1]
) -> ContainerList[T | T1]: ...
@overload
def __new__(
cls, kind: Tuple[Type[T], Type[T1]], default: List[T] | List[T1]
) -> ContainerList[T | T1]: ...
@overload
def __new__(
cls, kind: Tuple[Type[T], Type[T1], Type[T2]], default: List[T | T1 | T2]
) -> ContainerList[T | T1 | T2]: ...
@overload
def __new__(
cls,
kind: Tuple[Type[T], Type[T1], Type[T2]],
default: List[T | T1] | List[T | T2] | List[T1 | T2],
) -> ContainerList[T | T1 | T2]: ...
@overload
def __new__(
cls,
kind: Tuple[Type[T], Type[T1], Type[T2]],
default: List[T] | List[T1] | List[T2],
) -> ContainerList[T | T1 | T2]: ...
@overload
def __new__(
cls, kind: Member[T, Any], default: Optional[List[T]] = None
) -> ContainerList[T]: ...
|