Skip to content Skip to sidebar Skip to footer

What Is The Difference Between Typevar And Newtype?

TypeVar and NewType seem related but I'm not sure when I'm supposed to use each or what the difference is at runtime and statically.

Solution 1:

The two concepts aren't related any more than any other type-related concepts.

In short, a TypeVar is a variable you can use in type signatures so you can refer to the same unspecified type more than once, while a NewType is used to tell the type checker that some values should be treated as their own type.

Type Variables

To simplify, type variables let you refer to the same type more than once without specifying exactly which type it is.

In a definition, a single type variable always takes the same value.

# (This code will type check, but it won't run.)
from typing import TypeVar, Generic, List, Tuple

# Two type variables, named T and R
T = TypeVar('T')
R = TypeVar('R')

# Put in a list of Ts and get out one Tdefget_one(x: List[T]) -> T: ...

# Put in a T and an R, get back an R and a Tdefswap(x: T, y: R) -> Tuple[R, T]:
    return y, x

# A simple generic class that holds a value of type TclassValueHolder(Generic[T]):def__init__(self, value: T):
        self.value = value
    defget(self) -> T:returnself.value

x: ValueHolder[int] = ValueHolder(123)
y: ValueHolder[str] = ValueHolder('abc')

Without type variables, there wouldn't be a good way to declare the type of get_one or ValueHolder.get.

There are a few other options on TypeVar. You can restrict the possible values by passing in more types (e.g. TypeVar(name, int, str)), or you can give an upper bound so every value of the type variable must be a subtype of that type (e.g. TypeVar(name, bound=int)).

Additionally, you can decide whether a type variable is covariant, contravariant, or neither when you declare it. This essentially decides when subclasses or superclasses can be used in place of a generic type. PEP 484 describes these concepts in more detail, and refers to additional resources.

NewType

A NewType is for when you want to declare a distinct type without actually doing the work of creating a new type or worry about the overhead of creating new class instances.

In the type checker, NewType('Name', int) creates a subclass of int named "Name."

At runtime, NewType('Name', int) is not a class at all; it is actually the identity function, so x is NewType('Name', int)(x) is always true.

from typing import NewType

UserId = NewType('UserId', int)

defget_user(x: UserId): ...

get_user(UserId(123456)) # this is fine
get_user(123456) # that's an int, not a UserId

UserId(123456) + 123456# fine, because UserId is a subclass of int

To the type checker, UserId looks something like this:

classUserId(int): pass

But at runtime, UserId is basically just this:

defUserId(x): return x

There's almost nothing more than that to a NewType at runtime. As of Python 3.8.1, its implementation is almost exactly as follows:

defNewType(name, type_):
    defidentity(x):
        return x
    identity.__name__ = name
    return identity

Post a Comment for "What Is The Difference Between Typevar And Newtype?"