The implicits tag has no wiki summary.
1
vote
0answers
61 views
Trying to use sortBy to sort a list of tuples
In my scala eclipse worksheet I do:
val values: List[(Char, Int)] = List(('z', 7), ('b', 6))
//> values : List[(Char, Int)] = List((z,7), (b,6))
...
10
votes
5answers
848 views
Scala dependency injection: alternatives to implicit parameters
Please pardon the length of this question.
I often need to create some contextual information at one layer of my code, and consume that information elsewhere. I generally find myself using implicit ...
1
vote
1answer
165 views
Safely chaining implicit conversions
You can do this to get implicit conversions to chain:
package language
object chainedImplicits {
implicit def chainImplicits[A, B, C](a: A)(implicit conv1: A => B, conv2: B => C): C = ...
1
vote
1answer
79 views
Scala implicit context resolution
I have found there rules for implicict resolution i SLS:
if T is a compound type T1 with ... with Tn, the union of the parts of
T1, ..., Tn, as well as T itself
if T is a parameterized type S[T1, ...
9
votes
1answer
100 views
Conditions under which compiler will not define implicits (constructor, destructor, copy constructor, copy assignment) [duplicate]
This is supposed to be a trivial question but I could not find it explicitly on stackoverflow.
The following will be defined implicitly if not provided by the user.
default (parameterless) ...
3
votes
2answers
76 views
Scala resolution of multiple implicit parameters
In trying to answer this question, I came up with the following code:
case class Monkey(bananas: Int)
case class Tree(rings: Int)
case class Duck(quacks: Seq[String])
implicit class ...
6
votes
3answers
286 views
Scala named and default arguments in conjunction with implicit parameters
Consider the following:
def f(implicit a: String, y: Int = 0) = a + ": " + y
implicit val s = "size"
println(f(y = 2))
The last expression causes the following error:
not enough arguments for ...
0
votes
1answer
43 views
Implicit parameter does not work
Suppose that I have the following scala code:
trait ValueSource[A] {
def value(a: Int): A
}
trait ValueSourceOps[A] {
def self: Int
def F: ValueSource[A]
def value: A = F.value(self)
}
...
42
votes
3answers
2k views
How can I chain implicits in Scala?
The pimp my library pattern allows me to seemingly add a method to a class by making available an implicit conversion from that class to one that implements the method.
Scala does not allow two such ...
3
votes
1answer
58 views
Is there any advantage to using Mapper vs Implicit Operators?
Mapper Automap:
Mapper.CreateMap<ObjectType1, ObjectType2>()
.ForMember(o1 => o1.PropName, mapper => mapper.MapFrom(o2 => o2.Prop2Name));
Mapper.Map(object1, object2);
Implicit ...
0
votes
2answers
104 views
Trouble using Implicit Ordered with PriorityQueue (Scala)
I'm trying to create a data structure that has a PriorityQueue in it. I've succeeded in making a non-generic version of it. I can tell it works because it solves the A.I. problem I have.
Here is a ...
1
vote
1answer
57 views
How to getClass implicitly
I'm writing a Scala wrapper over some Java code with a method signature like method(cl: Class[_], name: String) and many getClass methods in code looks not good:
Creator.create(getClass, "One")
...
9
votes
1answer
295 views
Distinction between type aliases and type lambdas
This question is about a limitation of Scala's implicit resolution system that I've run into a few times when using Scalaz and that doesn't make a lot of sense to me. I've distilled the problem to a ...
3
votes
2answers
118 views
How to express this type in Scala? Existential with type class (ie, implicit) restriction?
I'm using the Play framework's JSON library, which uses a type class to implement the Json.toJson function. (I may decide to use another technique with less static typing, like reflection; but for ...
3
votes
2answers
166 views
How to be able to apply implict conversions in a recursive way in Scala
I am trying to write a conversions library for converting some scala types to an HTML representation. I would want, say, to execute List(1,2).toHtml and obtain ...
13
votes
5answers
270 views
Scala view application puzzler
Say we have the following two traits:
trait Foo[A] { def howMany(xs: List[A]) = xs.size }
trait Bar
And an implicit conversion from the second to the first:
implicit def bar2foo[A](bar: Bar) = new ...
0
votes
2answers
110 views
Groovy equivalent for Scala implicit parameters - extended
This question extends my previous one Groovy equivalent for Scala implicit parameters
Not sure if this is the right way to develop from a previous topic, but anyway..
I am looking for a way to ...
1
vote
1answer
95 views
Groovy equivalent for Scala implicit parameters
Is there some Groovy alternative to express something like the following:
def doSomethingWith(implicit i:Int) = println ("Got "+i)
implicit var x = 5
doSomethingWith(6) // Got 6
doSomethingWith ...
2
votes
1answer
205 views
Implicit parameter resolution from surrounding scope
I'm not a fan of bringing implicit parameters into my code so where I use them I want to encapsulate their use. So I am trying to define an object that both wraps up calls to spray-json with exception ...
9
votes
1answer
176 views
Scala - Co/Contra-Variance as applied to implicit parameter selection
I've got a trait like this:
trait CanFold[-T, R] {
def sum(acc: R, elem: T): R
def zero: R
}
With a function that works with it like this:
def sum[A, B](list: Traversable[A])(implicit adder: ...
2
votes
1answer
78 views
Why is trivial implicit not found?
Why isn't the implicit not found, even in something as trivial as:
class Wrapper[+A](data: Vector[A]) {
def sum[B >: A](implicit num: Numeric[B]) = data.sum
}
won't compile, without resorting ...
3
votes
2answers
175 views
How to express (implicit conv: String => A) as a view bound
I am asking myself what would be the view bound equivalent to
(implicit conv: String => A)
My first attempt was to simply declare the type parameter A as follows:
[String <% A]
But the ...
4
votes
4answers
175 views
Implicit lifting in scala
I want to implicitly convert functions from A => B to List[A] => List[B].
I wrote the following implicit definition:
implicit def lift[A, B](f: A => B): List[A] => List[B] = ...
...
-1
votes
1answer
124 views
Trouble getting scala type inference to work
The general goal:
Suppose for instance I want to develop a very pluggable issue tracker. Its core implementation might only support a ticket id and a description. Other extensions might add support ...
3
votes
5answers
230 views
Mix Scala Option and regular variable in a statement
I would like to write conditional statements mixing transparently Scala Options and regular variables.
For example:
var o1 = Some(1)
var o2: Option[Int] = None
var x = 2
val test1 = x < 3 ...
6
votes
2answers
239 views
Scala implicit Numeric[T] in companion object
I have the following generic Interval class (kindly formulated for me by user soc):
case class Interval[T](from: T, to: T)(implicit num: Numeric[T]) {
import num.mkNumericOps // allows us to write ...
6
votes
1answer
203 views
Methods versus Function and implicits in Scala
Let's declare a def and an equivalent function as a val:
scala> def optional(x:Int):Option[String] = None
optional: (x: Int)Option[String]
scala> val optional2:(Int)=>Option[String] = ...
8
votes
6answers
491 views
How to add a factory method to an existing Java class in Scala
In a pure Scala environment, I could do the following if I wanted to "add" a factory method to an existing object:
object Test
object Extensions {
object RichTest {
def someFactory = ...
3
votes
1answer
114 views
Why does scala compiler fail to find implicit parameter value/conversion when it is an overload and has generic type param?
Scala 2.8.1
Take the following class hierarchy
abstract class A
class B extends A
class C extends A
Why is the scala compiler unable to find the implicit parameter for send when sending an ...
2
votes
3answers
266 views
In Scala, how do i tell an abstract base class that type parameter T supports implicit conversion from Int (or Float, or…)?
I'm having difficulty transitioning from the world of C++/Templates to scala. I'm used to being able to use any operation on a template parameter T that I want, as long as anything I use to ...
35
votes
3answers
10k views
Scala Identifier “implicitly”
I have seen a function named implicitly used in Scala examples, what is it and how is it used?
Example here:
scala> sealed trait Foo[T] { def apply(list : List[T]) : Unit }; object Foo {
...
98
votes
2answers
6k views
Where does Scala look for implicits?
An implicit question to newcomers to Scala seems to be: where does the compiler look for implicits? I mean implicit because the question never seems to get fully formed, as if there weren't words for ...
5
votes
2answers
288 views
deforestation in scala collections
From the design of scala's collections I understand that something like:
scala> BitSet(1,2,3) map (_ + "a")
res7: scala.collection.immutable.Set[String] = Set(1a, 2a, 3a)
doesn't build an ...
3
votes
2answers
130 views
Implicit conversion issue in Scala
I'm improving the Scala support in Querydsl and I encountered the following issue. Here is a code snippet that illustrates the problem :
// framework types
class RelationalPath[T]
class ...
3
votes
1answer
198 views
Scala: How to get context bound List[T] conversion working here?
This is my first question here so hope I provide enough detail. Feel free to ask for clarification.
Taking the following into consideration, which works:
implicit def optionBsonReader[T, U](implicit ...
1
vote
1answer
180 views
Why does DummyImplicit not disambiguate [String](a: A) from (a: String)
Given the following piece of code:
final case class Attr[A](name: String)(implicit conv: String To A) {
def apply(value: A)(implicit dummy: DummyImplicit) = Attribute(name, value)
def ...
5
votes
1answer
172 views
How does Scalaz `F[_] : Applicative` type constraint imply use of implicit parameters?
I am struggling to understand the following function definition in Traverse trait in Scalaz:
def traverse[F[_] : Applicative, A, B](f: A => F[B], t: T[A]): F[T[B]]
The part I don't understand is ...
67
votes
1answer
6k views
What are Scala context and view bounds?
Could someone please explain what context and view bounds is and the difference between them in a simple way. Some easy to follow examples would be great too!
3
votes
2answers
540 views
two seemingly identical semantics: one binds implicitly, the other does not
Hello: I've been learning Scala recently (my related background is mostly in C++ templates), and I've run into something I currently don't understand about Scala, and it is driving me insane. :(
...
3
votes
3answers
134 views
What to do with operations for a specific kind of collection?
In several different places in my application, I need to take a Seq[SalesRow] and return a Map[String,SalesRow], where the string is the name of a country.
I need to use this in several places. For ...
10
votes
1answer
738 views
Type classes in Scala
Having a background in Haskell I am currently trying to get familiar with Scala.
I encountered some problems trying to translate a small, extensible expression language from Haskell into Scala. The ...
5
votes
4answers
255 views
Question about type classes in Scala
Let there are classes Fruit, Orange, and Apple.
abstract class Fruit
class Orange extends Fruit
class Apple extends Fruit
Now I want to add write functionality to both types Orange and Apple. Using ...
3
votes
1answer
370 views
Can Scala's implicits compose to convert higher-kinded types?
Let's say I have a type called LongArrayWritable, that is a boxed representation of an Array of Longs. I have implicit definitions that convert between these types:
implicit def boxLongArray(array: ...
7
votes
4answers
381 views
ambigious implicits
The question is why doesn't the following code work with type inference (below is a REPL session to demonstrate), and can it be fixed? More specifically, how is this different from the use of ...
3
votes
2answers
232 views
How to implement intermediate types for implicit methods?
Assume I want to offer method foo on existing type A outside of my control. As far as I know, the canonical way to do this in Scala is implementing an implicit conversion from A to some type that ...
9
votes
1answer
2k views
What is a diverging implicit expansion error?
While trying to find a solution to another question ([1]) I came across a diverging implicit expansion error. I'm looking for an explanation about what this means
Here's the use case:
scala> ...
3
votes
4answers
262 views
Scala compiler says my method is recursive in case when implicits and anonymous class is used
I want to be able to write code like
10 times {
doSomething
}
So I thought I could do that with implicits.
When i execute the following code in the Scala REPL it gets defined correctly
...
2
votes
2answers
857 views
Could not find implicit value for parameter ordering
I get the following error when trying to compile this:
Btree.scala:9: error: could not find implicit value for parameter ordering: Ordering[K]
abstract class Node[K,V] extends TreeMap[K,V]
...
6
votes
2answers
429 views
“can't existentially abstract over parameterized type…”
I was messing around with Scala 2.8 for fun and trying to define a pimp which adds an "as" method to type constructors, allowing to convert from one functor to another (please overlook the fact that ...
16
votes
6answers
672 views
Other programming languages that support implicits “a la Scala”
Scala implicits are very powerfull. I'm curious if they are a new/unique feature of Scala, or the concept already existed in other programming languages.
Thanks.
EDIT:
To clarify my question, yes, ...
