What does it mean for a type T to be a "First Class" type?
|
feedback
|
|
Usually it means instances of T can be
Eg functions in C are not first class types as they cannot be constructed at runtime, but they are in JavaScript. | |||||||
feedback
|
|
The use of "T" make it sound like maybe someone was speaking about the state of generics in Java (they get erased, meaning that while you can check if something is a List at runtime, you can't check if it's a List of Integer). However, there are also "first class types," meaning that types themselves (not just instances of them) can show up anywhere, like as the value of an expression. For instance, code snippets like
But you don't see that in the wild much, since if your types depend on a value, type-checking requires more computation, and if you allow types to depend on any value, then checking becomes undecidable. | ||||
|
feedback
|
|
I think a first-class type is about the same thing as a first-class object. It's basically the type which provides the properties of a first-class object. | |||
|
feedback
|