Tagged Questions
8
votes
1answer
108 views
How does one prove the equivalence of two types and that a signature is singly-inhabited?
Anyone who has been following Tony Morris' blog and scala exercises, will know that these two type signatures are equivalent:
trait MyOption1[A] {
//this is a catamorphism
def fold[B](some : A ...