The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
79 views

Implementing a scala method using a partial function

I have a class, as follows: trait Foo { def greet(name: String) : String } trait Bar { def hello(name: String) = s"Hello ${name}!" } class Greeter extends Foo with Bar { def greet(name: ...
1
vote
1answer
96 views

Checking if a partial function in scala is definied for a value with unknow type

I have the following trait (to get kind of rank 2 polymorphism click) type Id[A] = A trait ~>[F[_], G[_]] { def apply[A](a: F[A]): G[A] def isDefinedAt[A](a: A): Boolean} And a function to ...
1
vote
1answer
69 views

Weird error while using resetLocalAttrs

I have coded a macro which uses the resetLocalAttrs method of the (macro) context. After the macro has expanded, I get a weird error and I can't figure out what is happening. Firstly, I will introduce ...
4
votes
1answer
123 views

Scala: Have the type parameter of a collection survive a “collect” when the type parameter is a member type

Normally, when collecting all the elements of a sequence that match a particular type, the resulting collection has both the type of the original collection and the type selected for: trait Foo trait ...
8
votes
3answers
380 views

What is the easiest way to implement a Scala PartialFunction in Java?

For interoperability, I need to pass a Scala PartialFunction from Java code. For Function (Function1 and so on), there is AbstractFunction that I can subclass with an anonymous type, but what would be ...
12
votes
3answers
854 views

Scala PartialFunction can be Monoid?

I thought PartialFunction can be Monoid. Is my thought process correct ? For example, import scalaz._ import scala.{PartialFunction => -->} implicit def ...
2
votes
2answers
148 views

Scala: selecting function returning Option versus PartialFunction

I'm a relative Scala beginner and would like some advice on how to proceed on an implementation that seems like it can be done either with a function returning Option or with PartialFunction. I've ...
0
votes
2answers
222 views

How to define a more concise scala function

I am using the akka library and supplying a partial function to be implemented by an actor at runtime via a hot swap. The akka hot swap takes an argument in the form PartialFuntion[Any, Unit]. I ...
18
votes
6answers
1k views

Empty partial function in Scala

It seems to me like the { case ... => ... } syntax for partial functions require at least one case: scala> val pf: PartialFunction[String, String] = { case "a" => "b" } pf: ...
5
votes
2answers
170 views

Scala PartialFunctions from concrete ones

Is there any quick way to use as a concrete function (of type, say, (A) => B) as a PartialFunction[A, B]? The most concise syntax I know of is: (a: A) => a match { case obj => func(obj) } ...
13
votes
1answer
329 views

How can I easily define more complex PartialFunctions in Scala?

PartialFunctions In Scala, a PartialFunction is, in short, a function that additionally defines an isDefinedAt method. It is easy to define partial functions with a series of case statement. A ...
5
votes
5answers
3k views

Scala, partial functions

Is there any way to create a PartialFunction except through the case statement? I'm curious, because I'd like to express the following (scala pseudo ahead!)... val bi = BigInt(_) if (bi.isValidInt) ...
3
votes
2answers
561 views

Scala Option's collect method doesn't like my PartialFunction

I think I'm missing something: scala> Some(1) collect ({ case n if n > 0 => n + 1; case _ => 0}) res0: Option[Int] = Some(2) scala> None collect ({ case n if n > 0 => n + 1; ...
7
votes
2answers
437 views

Partial function application prematurely runs codeblock when used with underscore

Given: def save(f: => Any)(run:Boolean) { if (run) { println("running f"); f } else println("not running f") } I can call it with: save("test")(true) -> running f save("test")(false) -> ...
5
votes
5answers
1k views

Scope of variables inside scala’s case guard statement

For lift development, I sometimes need to use match–case statements like the following. (Rewritten to plain scala for easier understanding.) One note to them: These are actually different partial ...
0
votes
1answer
199 views

How to implement a partial function in a subclass

I'm trying to design a couple of classes that inherit a partial function, but I don't seem to be able to get the syntax quite right. My superclass looks like this: abstract class Controller { ...
8
votes
2answers
844 views

When is a scala partial function not a partial function?

While creating a map of String to partial functions I ran into unexpected behavior. When I create a partial function as a map element it works fine. When I allocate to a val it invokes instead. ...
3
votes
2answers
461 views

How to convert X => Option[R] to PartialFunction[X,R]

As long as we have a PartialFunction[X,R] it's very easy to convert it to a function returning Option[R], e.g. def pfToOptf[X, R](f: PartialFunction[X,R])(x: X) = if (f.isDefinedAt(x)) Some(f(x)) ...