24

Are there some theoretical reasons for that (like that the type checking or type inference would become undecidable), or practical reasons (too difficult to implement properly)?

Currently, we can wrap things into newtype like

newtype Pair a = Pair (a, a)

and then have Pair :: * -> *

but we cannot do something like λ(a:*). (a,a).

(There are some languages that have them, for example, Scala does.)

Petr
  • 5,507
  • 3
  • 29
  • 46
  • 4
    Choosing one kind of type system into use excludes the other kind of type systems since the whole thing needs to be consistent. Type level lambda would be very strange in category theory... – tp1 Dec 01 '12 at 09:29
  • 1
    http://stackoverflow.com/questions/4922560/why-doesnt-typesynonyminstances-allow-partially-applied-type-synonyms-to-be-use is also related. – Edward Z. Yang Oct 14 '16 at 21:08

1 Answers1

17

Type inference with type level lambdas would require higher order unification which is undecidable. This is the motivation for disallowing them. But as has happened with other undecidable features (like type inference for GADTs), it might be possible to require type signatures and allow it. I'm not sure if that's been investigated by anyone.

augustss
  • 286
  • 3
  • 4