Fahad/CodeSamples/ExtractorObjects.scala
author Chengsong
Sun, 09 Jul 2023 02:08:12 +0100
changeset 658 273c176d9027
parent 44 a751aa1ee4f7
permissions -rw-r--r--
finished 4.3.2 section explaining why lemma 11 is too strong

package Main

object Twice {
  def apply(x: Int): Int = x * 2
  def unapply(z: Int): Option[Int] = if (z % 2 == 0) Some(z / 2) else None
}

object TwiceTest extends App {
  val x = Twice(10)
  x match { case Twice(n) => Console.println(n) } //prints 21
}