So type constructors take types as their parameters and return new types you're saying, whereas the variant type in my example, the values are the constructors that make up the value of Type Answer
That's right. Type constructors are related to generics. For example if you have a generic type `List<A>` you could think of `List` as a type constructor.
In most languages, however, that's not a construct you can do much of anything with.
bweitzman|5 years ago
In most languages, however, that's not a construct you can do much of anything with.