I have never heard of this. And only about five hits on Google, one of which is the very question, which seems to suggest to me that these are made up conditions. And, as with any drafted term, if you want to know what this means, you should ask the person who created it.
From what I could collect, it seems to be related to overload based on the return type.
Basically, if you have four overloaded functions like these:
foo :: string β int
foo :: string β string
foo :: string β ()
foo :: int β int
And you call them like this:
1 + foo 1
1 + foo "one"
foo "one"
(, , ) :
1 + foo 1
1 + foo "one"
foo "one"
- (.. ) :
1 + foo 1
1 + foo "one"
foo "one"
ERROR foo :: string β int, foo :: string β string foo :: string β (), , .