What does it mean for a type T to be a "First Class" type?

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Usually it means instances of T can be

  • returned from functions
  • passed into functions
  • constructed at runtime

Eg functions in C are not first class types as they cannot be constructed at runtime, but they are in JavaScript.

link|improve this answer
1  
Umm... no. Although the OP selected this as the answer, this does not even come close to answering his question. He means type as in type theory. What you describe are other first class citizens, but none of them are types. -1. Here is one that answers it correctly, if only breifly: stackoverflow.com/questions/599978/what-is-a-first-class-type/… – trinithis Nov 10 '11 at 20:57
@trinithis This other answer you selected is an example of 'reified types', where the type 'type' itself is a first class type. For references see google.com/… – Pete Kirkham Nov 10 '11 at 21:52
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

someType st = new someType();
new typeOf(s); // makes a new instance of someType

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.

link|improve this answer
+1: The real answer. – trinithis Nov 10 '11 at 20:59
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.