I've seen this in a few places:
data T = T a :-> b
Notably in quickcheck we have
data Fun a b = Fun (a :-> b, b) (a -> b)
What is the :-> and how does it differ from ->?
|
I've seen this in a few places:
Notably in quickcheck we have
What is the |
||||
|
|
Operators beginning with a colon is a constructor or type name. In this case it is a type name for a data type specific to quickcheck, but in general the symbol :-> could be used for any constructor or type name as you like (it's not part of the language proper). The definition of :-> in quickcheck:
|
|||
|
|
|
Answered my own question: first saw this as
|
|||
|
|