This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Implicit parameter to partial functions?

1 reply
mailleux
Joined: 2008-08-23,
User offline. Last seen 4 years 7 weeks ago.
Is there a way to specify implicit parameter to a partial Function?

Thank,

  Thomas
extempore
Joined: 2008-12-17,
User offline. Last seen 35 weeks 3 days ago.
Re: Implicit parameter to partial functions?

On Thu, Jan 29, 2009 at 09:33:25PM -0200, Thomas Sant Ana wrote:
> Is there a way to specify implicit parameter to a partial Function?

I'm not all that optimistic this will accomplish what you want, but here's what I came up with:

scala> case class PF(implicit prefix: String) extends PartialFunction[String,Int] {
| def isDefinedAt(x: String): Boolean = x startsWith prefix
| def apply(x: String) = if (isDefinedAt(x)) x.length else throw new MatchError(x)
| }
defined class PF

scala> implicit val starter = "a"
starter: java.lang.String = a

scala> val startsWithA = PF()
startsWithA: PF =

scala> startsWithA.isDefinedAt("abc")
res0: Boolean = true

scala> startsWithA("abc")
res1: Int = 3

scala> startsWithA.isDefinedAt("cba")
res2: Boolean = false

scala> startsWithA("cba")
scala.MatchError: cba
at PF.apply(:6)
at .(:9)
at .()

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland