enum-paradise icon indicating copy to clipboard operation
enum-paradise copied to clipboard

Evaluate feasibility of supporting ADT style of definition

Open aloiscochard opened this issue 12 years ago • 0 comments

 trait Tree 
  case object Empty extends Tree 
  case class Leaf(x:Int) extends Tree 
  case class Node(left: Tree, right: Tree) extends Tree 

Not sure one could gain any benefit VS this syntax

aloiscochard avatar Jan 11 '13 19:01 aloiscochard