1
vote
2answers
64 views

Scala implicit function parameterized

Why would this code not take the implicit functions defined in the local scope? From where else does this take the implicit functions? def implctest[T](a: T)(implicit b:T=>T):T = {b apply a} class ...
3
votes
1answer
102 views

Enrich an inner class

I want to implement the enrich-my-library pattern for the inner class that will work for any instance of the outer class. Something like this: class Outer { class Inner(val x: Option[Inner] = None) ...
2
votes
2answers
87 views

Is there a way to have this done implicitly?

Is there any way to have this implicit method called on x before it matches to meet the type requirements of the match? If I call it directly it works as expected, but I would like to know if it's ...
0
votes
0answers
39 views

Scala: Implicits + Override (+ReactiveMongo)

Having code: object MarketTrigger extends DbHandler[MarketTrigger]{ implicit object BSONDateTimeHandler extends BSONHandler[BSONDateTime, DateTime] { def read(time: BSONDateTime) = new ...
0
votes
0answers
72 views

Scala tree structure and inserting side effects via implicit parameters

I have a simple tree of Nodes, each of which has an apply method that takes a given State and returns a new State and the next Node in the tree. trait Node[SE <: SideEffect] { def apply(state: ...
1
vote
2answers
47 views

Scala generic implicit values ambiguous when overloading?

The following outputs 0 instead of my desired result, which is 2. This looks similar to this question, but here I am using parentheses everywhere. object Test { implicit def x = List(1, 2) ...
7
votes
1answer
66 views

Does Inheritance in implicit value classes introduce an overhead?

I want to apply scala's value classes to one of my projects because they enable me to enrich certain primitive types without great overhead (I hope) and stay type-safe. object Position { implicit ...
0
votes
1answer
66 views

Is there a utility for polymorphic object creation somewhere in the standard library

I often write this utility in my projects: def instance[T](implicit m: Manifest[T]) = m.erasure.newInstance.asInstanceOf[T] It looks like something that could well be in the standard library, ...
0
votes
1answer
84 views

Using implicit objects within classes

I am trying to write code to represent polynomials within Scala. I need this code to be type polymorphic, so I am using implicits to deal with different types. I have: case class Mono[T](degree: Int, ...
0
votes
1answer
40 views

NPE in spray-json because of recursive implicits (context bound issue?)

Perhaps I discovered a bug in spray-json. I get Null Pointer Exception when I'm trying to get json of an object that has field of type of itself. Example is: case class TestItem(subitems: ...
6
votes
2answers
79 views

Partially applying a function that has an implicit parameter

Can I turn a method which takes an implicit parameter into a function? trait Tx def foo(bar: Any)(implicit tx: Tx) {} foo _ // error: could not find implicit value for parameter tx: Tx I am ...
1
vote
1answer
120 views

Overhead of implicit object wrappers in Scala

Consider the following, very simple code : class A(val a: String, val b: Int) object Test { implicit class wrap(obj: A) { def fn = obj.a + obj.b } def main(args: Array[String]) = ...
3
votes
1answer
100 views

Is it possible to know what Scala implicit is being used, without the help of an IDE?

For the times when you are reading source code without an IDE at hand.
1
vote
0answers
57 views

Scala: spec 6.23.3 implicit overloading resolution — explanation needed

This is a follow-up of Implicit search decision between multiple alternatives. I'll quote the code from it. trait A trait B extends A caseclass C extends B trait Tester[-T] { def test (t: T): ...
0
votes
1answer
174 views

scala playframework json implicit case class conversion

I am developing my first Play 2.1 application in Scala. The task I am trying to accomplish is to parse json into 3 different case classes. The problem is - I do not know where to declare all case ...
2
votes
2answers
86 views

Implicit search decision between multiple alternatives

Is there any way of having multiple suitable alternatives in a type-class where the most specific is chosen, not producing diverging implicit expansion? It would look like this trait A trait B ...
2
votes
1answer
73 views

Why is partially applying functions on an implicit class giving me an error?

object RegexImplicits{ implicit class RegexWrapper(r: scala.util.matching.Regex) { def matches(s: CharSequence): Boolean = r.pattern.matcher(s).find } def something(s:String):Boolean = s == ...
1
vote
1answer
88 views

Why does Int not inherit/extend from Ordered[Int]

I have a question on type design. Why does Int not extend the Ordered trait. Isn't Int ordered by nature? Instead, the scala library provides implicit 'orderer' methods which convert Int to ...
7
votes
0answers
181 views

How does implicit <:< help to find type parameters

A couple of questions arise while I'm reading 7.3.2 Capturing type constraints from Joshua's Scala in Depth. The example excerpted from the book: scala> def peek[C, A](col: C)(implicit ev: C ...
1
vote
1answer
116 views

Implicit parameter not passed to higher-order function

I have a function which wraps the call to Anorm's SQL function in a Future: def sqlWithFuture[T](sql: => T) = Future(DB.withConnection(con => sql)) Using it in a Model: def userQuery = ...
8
votes
1answer
168 views

Using context bounds “negatively” to ensure type class instance is absent from scope

tl;dr: How do I do something like the made up code below: def notFunctor[M[_] : Not[Functor]](m: M[_]) = s"$m is not a functor" The 'Not[Functor]', being the made up part here. I want it to ...
1
vote
1answer
26 views

Mixin SynchronizedSet with SortedSet having implicit Ordering object

I can't seem to create a SortedSet that also mixes in SynchronizedSet. The crux of the problem is SortedSet requires an implicit Ordering object. val orderByIdThenName = Ordering[(Int, ...
2
votes
2answers
123 views

Passing request context implicitly in an actor system

I would like to propagate a request context implicitly in a system of collaborating actors. To simplify and present the situation, my system has multiple actors and the messages passed to these ...
4
votes
1answer
67 views

Type bounds unexpectedly change precedence of Scala implicit parameter resolution

The Scala example below shows a situation where a required implicit parameter (of type TC[C]) can be provided by both implicit methods in scope, a and b. But when run, no ambiguity results, and it ...
2
votes
1answer
48 views

Inner trait breaks implicit parameter

object Test { trait Foo trait TC[A] object TC { implicit def tc1[F <: Foo] = new TC[F] {} implicit def tc2[F1 <: Foo, F2 <: Foo] = new TC[(F1, F2)] {} } object Bar { ...
4
votes
1answer
81 views

Enrich-My-Library For all Traversables

I was trying to figure out how to write a functional swap function that works on any Traversable[_], given a collection and the indexes to swap. I came up with the following: def swap[A, CC <% ...
1
vote
2answers
312 views

Scala design pattern with implicit parameter (Play 2.x in Scala)

I am working on a play 2.1 project and need some guidance on a scala design problem. For our application, a request context object which stores client information from the incoming request is needed ...
6
votes
2answers
241 views

implicits for objects in Scala

I'm confused by this description in "5.1.3 Implicit resolution" in Joshua Suareth's book Scala in depth, on Page 100: Scala objects can't have companion objects for implicits. Because of this, ...
4
votes
2answers
155 views

Manifest[T].erasure is deprecated in 2.10, what should I use now?

I have the following code: object Log { def get[T](implicit manifest : Manifest[T] ) = { LoggerFactory.getLogger( manifest.erasure.getName ) } def getByName( name : String ) = { ...
1
vote
1answer
93 views

implementing methods of traits with additional implicit parameters

I want an object to implement the trait Iterable and pass an additional implicit parameter to the implemented method: object MyRepository extends Iterable[Something] { def iterator(implict ...
2
votes
1answer
216 views

When should I make methods with implicit argument in Scala?

I made codes using play framework in scala which look like the following: object Application extends Controller { def hoge = Action( implicit request => val username = MyCookie.getName.get ...
1
vote
2answers
76 views

Collision of implicits in Scala

The following Scala code works correctly: val str1 = "hallo" val str2 = "huhu" val zipped: IndexedSeq[(Char, Char)] = str1.zip(str2) However if I import the implicit method implicit def ...
4
votes
2answers
158 views

Scala applying implicit functions to a collection

EDIT: I'm using Scala 2.9.2 In Scala, I've defined a custom class which wraps a Double: class DoubleWrap( d : Double ) { def double( ) = d * 2 } and an implicit conversion from Double to ...
1
vote
1answer
79 views

How should I write this higher order function where the parameter func needs an implicit view?

I have a function that makes use of an implicit view to a Seq[A], you can see it makes use of the head method and preserves types:- scala> def needSeq[A, C <% Seq[A]](col: C) = { (col.head , ...
1
vote
1answer
78 views

unwanted implicit argument resolution in higher order function map

I'm having issues trying to map some methods defined with implicit arguments over an Option type. Let's say I define a custom class and a trait with the aforementioned methods operating on said class ...
0
votes
1answer
244 views

Runtime “could not find implicit value for parameter” error when using Scala's builder idiom

I am writing a Scala class that implements a 2-dimensional matrix of arbitrary objects. I need the class to be more specialized than nested pair of IndexedSeq objects, but extending a collections ...
3
votes
1answer
114 views

Scala and Java - Implicit Parameters and Inheritence

The following code gives an error: package test trait Base { def method:String } trait Trait extends Base { def method()(implicit i:String):String = { "2" } } object Object extends Trait { } ...
1
vote
1answer
105 views

Scala - an unsuspicious implicit method is messing up the entire CanBuildFrom thing

I have the follwoing code: trait DBO trait BSONWriter[S] trait HasWriter { implicit def writer[T <: BSONWriter[_ <: DBO]]: T } And everything was fine! Except for when I mix it into my ...
2
votes
1answer
84 views

implicit arguments is not passed to closure

I have written a little transaction helper that gets passed a closures and executes it within a transaction: object Transaction { val emf = ...
1
vote
1answer
155 views

Implicit parameter for literal function

While reading Play! Framework documentation, I came across this snippet: def index = Action { implicit request => session.get("connected").map { user => Ok("Hello " + user) }.getOrElse ...
1
vote
1answer
98 views

Provides implicit functions for a code block in Scala

Suppose a class defines an implicit function that converts an integer to a String: class Dollar() { implicit def currency(num: Int): String = "$" + num.toString def apply(body: => Unit) { ...
9
votes
2answers
226 views

Is there a way to declare an implicit val inside a for comprehension?

I have some code with nested calls to flatMap like so: foo.flatMap(implicit f => bar(123).flatMap(b => /* and so on... implicit f is still in scope here.*/ )) Normally, one would write that ...
4
votes
1answer
78 views

Scala - Can implicitNotFound annotation be applied at the method level?

I have a method that takes type parameters with an implicit view bounds on them. Can I use the @implicitNotFound annotation to give nicer compiler errors when the method is called with invalid data ...
2
votes
1answer
99 views

Tuple case mapping don't work with generic Array[T] in scala

I don't understand why the compiler cannot understand the case instruction mapping on tuple when i try to use with generics Array[T]. class Variable[T](val p: Prototype[T], val value: T) class ...
0
votes
2answers
108 views

Scala implicit Any wrapper

I am trying to write a wrapper for values for a simple database that I am writing. Currently, I have a class Value that takes a type that is a subtype of ordered (this is important because I will do ...
4
votes
2answers
133 views

type parameter inference + higher order types + type classes = :-(

import scalaz._; import Scalaz._ def foo[M[_]:MonadPlus,A](a:A) = a.point[M] // foo: [M[_], A](a: A)(implicit evidence$1: scalaz.MonadPlus[M])M[A] def bar1[M[_]:MonadPlus](i:Int): M[Int] = ...
5
votes
1answer
73 views

Unambiguous Subimplicits

Consider the following code: class A { def print = println("A") } class B extends A { override def print = println("B") } def foo(implicit a: A) = a.print def bar(implicit a: A) = { implicit val ...
2
votes
1answer
77 views

how is scalaz.Equal resolved

There is Equal object in scalaz package: package scalaz object Equal extends EqualLow { // ... implicit def Tuple3Equal[A: Equal, B: Equal, C: Equal]: Equal[(A, B, C)] = equal { case ((a1, ...
1
vote
2answers
100 views

Checking ClassManifest for subtypes in Scala

I want to compare two class-manifests (gotten through implicits) to check if class A is extending trait B. The below code should yield true in the case where I ask if the class extends the interface: ...
0
votes
1answer
110 views

Acquiring 2 implicits for scalacheck function

I am using scalacheck and am in the middle of a generic-programming soup right now. The official guide shows this example: def matrix[T](g: Gen[T]): Gen[Seq[Seq[T]]] = Gen.sized { size => val ...

1 2 3 4