What are the various use cases for union types and intersection types? There has been lately a lot of buzz about these type system features, yet somehow I have never felt need for either of these!
|
If you want a more practice-oriented answer: With union and recursive types you can encode regular tree types and therefore XML types. With intersection types you can type BOTH overloaded functions and refinement types (what in a previous post is called coherent overloading) So for instance you can write the function add (that overloads integer sum and string concatenation) as follows
Which has the intersection type
But you can also refine the type above and type the function above as
where Pos and Neg are positive and negative integer types. The code above is executable in the language CDuce ( http://www.cduce.org ) whose type system includes union, intersections, and negation types (it is mainly targeted at XML transformations). If you want to try it and you are on Linux, then it is probably included in your distribution (apt-get install cduce or yum install cduce should do the work) and you can use its toplevel (a la OCaml) to play with union and intersection types. On the CDuce site you will find a lot of practical examples of use of union and intersection types. And since there is a complete integration with OCaml libraries (you can import OCaml libraries in CDuce and export CDuce modules to OCaml) you can also check the correspondence with ML sum types (see here). Here you are a complex example that mix union and intersection types (explained in the page "http://www.cduce.org/tutorial_overloading.html#val"), but to understand it you need to understand regular expression pattern matching, which requires some effort.
In a nutshell it transforms values of type Person into values of type (Man | Women) (where the vertical bar denotes a union type) but keeping the correspondence between genres: split is a function with intersection type
|
|||
|
|
|
Union Types To quote Robert Harper, "Practical Foundations for Programming Languages", ch 15:
Booleans The simplest sum type is the Boolean,
Booleans have only two valid values, T or F. So instead of representing them as numbers, we can instead use a sum type to more accurately encode the fact there are only two possible values. Enumerations Enumerations are examples of more general sum types: ones with many, but finite, alternative values. Sum types and null pointers The best practically motivating example for sum types is discriminating between valid results and error values returned by functions, by distinguishing the failure case. For example, null pointers and end-of-file characters are hackish encodings of the sum type:
where we can distinguish between valid and invalid values by using the By using sum types in this way we can rule out null pointer errors entirely, which is a pretty decent motivating example. Null pointers are entirely due to the inability of older languages to express sum types easily. Intersection Types Intersection types are much newer, and their applications are not as widely understood. However, Benjamin Pierce's thesis ("Programming with Intersection Types and Bounded Polymorphism") gives a good overview:
They let us encode a lot of information in the type, explaining via type theory what multiple inheritance means, giving types to type classes, |
||||
|
|
|
Union types are useful for typing dynamic languages or otherwise allowing more flexibility in the types passed around than most static languages allow. For example, consider this:
If you have union types, it's easy to type One use for intersection types is to describe an object that implements multiple interfaces. For example, C# allows multiple interface constraints on generics:
Here, |
|||
|
|
union? – gasche Apr 13 '11 at 18:46structs. I don't know where to begin. – Jonathan Tran Apr 13 '11 at 18:57