The following Scala code compiles fine:
val f = (input: String) => Some("result")
object Extract {
def unapply(input: String): Option[String] = f(input)
}
val Extract(result) = "a string"
But if I replace the extractor by:
object Extract {
def unapply = f
}
Then compilation fails with:
error: an unapply result must have a member `def isEmpty: Boolean
val Extract(result) = "a string"
^
Why? Where does def isEmpty: Boolean
come from?
In Scala 2.10 (and before)
unapply
had to always return anOption
or aBoolean
. Since 2.11, it can return any type, so far as it hasdef isEmpty: Boolean
anddef get: <some type>
methods (likeOption
does). See https://hseeberger.wordpress.com/2013/10/04/name-based-extractors-in-scala-2-11/ for an explanation why it's useful. But yourunapply
returns aString => Some[String]
, which doesn't have either, and that's what the error says.