This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait Constructable[T] { | |
def construct: T | |
} | |
implicit object IntIsConstructable extends Constructable[Int] { | |
def construct = 42 | |
} | |
implicit object StringIsConstructable extends Constructable[String] { | |
def construct = "Hello World" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case class Person(firstName: String, lastName: String) |
NewerOlder