Type family

From HandWiki

In computer science, a type family associates data types with other data types, using a type-level function defined by an open-ended collection of valid instances of input types and the corresponding output types.[1]

Type families are a feature of some type systems that allow partial functions between types to be defined by pattern matching. This is in contrast to data type constructors, which define injective functions from all types of a particular kind to a new set of types, and type synonyms (a.k.a. typedef), which define functions from all types of a particular kind to another existing set of types using a single case.

Type families and type classes are closely related: normal type classes define partial functions from types to a collection of named values by pattern matching on the input types, while type families define partial functions from types to types by pattern matching on the input types. In fact, in many uses of type families there is a single type class which logically contains both values and types associated with each instance. A type family declared inside a type class is called an associated type.[2]

Programming languages with support for type families or similar features include Haskell (with a common language extension),[3] Standard ML (through its module system),[4] Rust,[5] Scala (under the name "abstract types"),[6] and C++ (through use of typedefs in templates).[7]

Variations

The TypeFamilies extension in the Glasgow Haskell Compiler supports both type synonym families and data families. Type synonym families are the more flexible (but harder to type-check) form, permitting the types in the codomain of the type function to be any type whatsoever with the appropriate kind.[7] Data families, on the other hand, restrict the codomain by requiring each instance to define a new type constructor for the function's result. This ensures that the function is injective, allowing clients' contexts to deconstruct the type family and obtain the original argument type.[1]

Motivation and examples

Type families are useful in abstracting patterns where a common "organization" or "structure" of types is repeated, but with different specific types in each case. Typical use cases include describing abstract data types like generic collections, or design patterns like model–view–controller.

Self-optimizing abstract data types

One of the original motivations for the introduction of associated types was to allow abstract data types to be parameterized by their content type such that the data structure implementing the abstract type varies in a "self-optimizing" way.[2] Normal algebraic data type parameters can only describe data structures that behave uniformly with respect to all argument types. Associated types, however, can describe a family of data structures that have a uniform interface but vary in implementation according to one or more type parameters. For example,[2] using Haskell's associated types notation, we can declare a type class of valid array element types, with an associated data family representing an array of that element type:

class ArrayElem e where
    data Array e
    index :: Array e -> Int -> e

Instances can then be defined for this class, which define both the data structure used and the operations on the data structure in a single location. For efficiency, we might use a packed bit vector representation for arrays of Boolean values, while using a normal array data structure for integer values. The data structure for arrays of ordered pairs is defined recursively as a pair of arrays of each of the element types.

instance ArrayElem Bool where
    data Array Bool = BoolArray BitVector
    index (BoolArray ar) i = indexBitVector ar i
instance ArrayElem Int where
    data Array Int = IntArray UIntArr
    index (IntArray ar) i = indexUIntArr ar i
instance (ArrayElem a, ArrayElem b) => ArrayElem (a, b) where
    data Array (a, b) = PairArray (Array a) (Array b)
    index (PairArray ar br) = (index ar i, index br i)

With these definitions, when a client refers to an Array (Int, Bool), an implementation is automatically selected using the defined instances.

A class for collections

Inverting the previous example, we can also use type families to define a class for collection types, where the type function maps each collection type to its corresponding element type:[7]

class Collects c where
    type Elem c
    empty :: c
    insert :: Elem c -> c -> c
    toList :: c -> [Elem c]
instance Collects [e] where
    type Elem [e] = e
    empty = []
    insert = (:)
    toList = id
instance Ord e => Collects (Set.Set e) where
    type Elem (Set.Set e) = e
    empty = Set.empty
    insert = Set.insert
    toList = Set.toList

In this example, the use of a type synonym family instead of a data family is essential, since multiple collection types may have the same element type.

Comparison with functional dependencies

Functional dependencies are another type system feature that have similar uses to associated types. While an associated type adds a named type function mapping the enclosing type class's parameters to another type, a functional dependency lists the result type as another parameter of the type class and adds a constraint between the type parameters (e.g. "parameter a uniquely determines parameter b", written a -> b). The most common uses of functional dependencies can be directly converted to associated types and vice versa.[7]

Type families are regarded as being generally easier to type-check than functional dependencies. Another advantage of associated types over functional dependencies is that the latter requires clients using the type class to state all of the dependent types in their contexts, including ones they do not use; since associated types do not require this, adding another associated type to the class requires updating only the class's instances, while clients can remain unchanged. The main advantages of functional dependencies over type families are in their added flexibility in handling a few unusual cases.[8]

References

  1. 1.0 1.1 Kiselyov, Oleg; Peyton Jones, Simon; Shan, Chung-chieh (2010). "Fun with Type Functions". http://research.microsoft.com/~simonpj/papers/assoc-types/fun-with-type-funs/typefun.pdf. 
  2. 2.0 2.1 2.2 Chakravarty, Manuel M. T.; Keller, Gabriele; Peyton Jones, Simon; Marlow, Simon (2005). "Associated Types with Class". Proceedings of the 32nd Annual ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages (ACM Press): 1–13. http://www.cse.unsw.edu.au/~chak/papers/CKPM05.html. 
  3. "Type Functions, Type Families, and Associated Types in GHC - The Master Plan". April 2019. https://gitlab.haskell.org/ghc/ghc/wikis/type-functions. Retrieved 4 April 2019. 
  4. Wehr, Stefan; Chakravarty, Manuel M. T. (2008). "ML Modules and Haskell Type Classes: A Constructive Comparison". Proceedings of the Sixth ASIAN Symposium on Programming Languages and Systems. Lecture Notes in Computer Science (Springer-Verlag) 5356: 188–204. doi:10.1007/978-3-540-89330-1_14. ISBN 978-3-540-89329-5. http://www.cse.unsw.edu.au/~chak/papers/WC06.html. 
  5. "Associated Items - The Rust Reference". January 2024. https://doc.rust-lang.org/reference/items/associated-items.html#associated-types. 
  6. "A Tour of Scala: Abstract Types". http://www.scala-lang.org/node/105. Retrieved 23 February 2013. 
  7. 7.0 7.1 7.2 7.3 Chakravarty, Manuel M. T.; Keller, Gabriele; Peyton Jones, Simon (2005). "Associated type synonyms". Proceedings of the tenth ACM SIGPLAN international conference on Functional programming. ACM Press. pp. 241–253. doi:10.1145/1086365.1086397. ISBN 1595930647. http://www.cse.unsw.edu.au/~chak/papers/CKP05.html. 
  8. "Type Families (TF) vs Functional Dependencies (FD)". https://gitlab.haskell.org/ghc/ghc/wikis/tf-vs-fd. Retrieved 4 April 2019. 

External links