Sample Page

In type theory and programming languages, a type variable is a mathematical variable ranging over types. Even in programming languages that allow mutable variables, a type variable remains an abstraction, in the sense that it does not correspond to some memory locations.

Programming languages that support parametric polymorphism make use of universally quantified type variables. Languages that support existential types make use of existentially quantified type variables. For example, the following OCaml code defines a polymorphic identity function that has a universally quantified type, which is printed by the interpreter on the second line:

# let id x = x;;
val id : 'a -> 'a = <fun>

In mathematical notation, the type of the function id is , where is a type variable.

Generic programming

In generic programming, a type parameter or template parameter is used to denote the type(s) that may be consumed. These type parameters are placeholders for types to be specified later, allowing for code to work with different types while remaining type-safe. Type parameters are typically written as a single capital letter.

interface List<E> {
    void add(E x);
    Iterator<E> iterator();
}

interface Map<K, V> {
    V put(K key, V value);
    V get(Object key);
}

In some languages, these can be specified to have default type parameters. For example, in C++:

template <typename T = int>
class Box {
private:
    T value;
public:
    explicit Box(T value):
        value{value} {}

    // ...
};

Box<double> b1(13.5);
Box<> b2(5); // This is Box<int>

Some languages additionally offer a form of constraining these type parameters, called type classes. C++ offers concepts and requires clauses[1], C#, Kotlin and Rust offer where clauses[2][3], while Java have extends and super qualifiers. Go interfaces also constrain a type such that it must implement certain methods.[4]

using System;

public class MyGenericClass<T, U> 
    where T : IComparable<T>, allows ref struct
    where U : class, notnull, new()
{
    // ...
}

Additionally, Java offers wildcard type parameters to allow for variances of any parametrisations of a generic type. These are denoted ?, for example List<?>.[5] This exists in Kotlin as well, but denoted with * instead.

In languages with dynamic typing, although type annotations may not be a core part of the language, some features may be provided to emulate them. For example, in Python, type parameters can still be specified using the class typing.TypeVar.[6]

from typing import TypeVar

T: TypeVar = TypeVar('T')

def first_item(items: list[T]) -> T:
    return items[0]

See also

References

  1. ^ cppreference.com (6 June 2026). “Constraints and concepts”. cppreference.com. cppreference.com.
  2. ^ “where (generic type constraint)”. learn.microsoft.com. Microsoft Learn. 30 July 2024.
  3. ^ “Generics: in, out, where Kotlin”. kotlinlang.org. JetBrains s.r.o. Retrieved 15 October 2025.
  4. ^ The Go Authors. “A tour of Go – Interfaces”. go.dev. The Go Authors. Retrieved 5 May 2026.
  5. ^ “Chapter 4. Types, Values, and Variables”. docs.oracle.com. Retrieved 2020-11-03.
  6. ^ Python Software Foundation (10 May 2026). “typing — Support for type hints”. docs.python.org. Python Software Foundation.