Was trying to compile some code from this SO question and run into this error message cannot find class manifest for element type T. Here is another snippet that shows the behavior:
I have the following problem: I have a function which takes a List[Double] as parameter, performs some arithmetic operations on the elements of the list and than return the result. I would like the fu
How might one implement C# yield return using Scala continuations? I\'d like to be able to write Scala Iterators in the same st开发者_开发问答yle. A stab is in the comments on this Scala news post, bu
I\'m just starting to use Apache Buildr and I\'m constantly running into the problem of not knowing what repo urls and versions are available for me to use.
I have a two lists, a List[A] and a List[B]. What I want is a Map[A,B] but I want the semantics of zip. So started out like so:
I\'m having trouble converting a java SortedMap into a scala TreeMap. The SortedMap comes from deserialization and needs to 开发者_高级运维be converted into a scala structure before being used.
I know this is an exact duplicate, but a year has gone by and Scala seems to be a fast moving thing, so I figure it might be acceptable to ask again:
Whats the status of Lift working开发者_如何学运维 with Scala 2.8? I\'m finding fragments of conversations about it on the web. I\'ve been trying tweaking the pom.xml but I\'m getting errors from the
Is there something I\'ve got wrong with the following fragment:- object Imp { implicit def string2Int(s: String): Int = s.toInt
Following on from another question I asked, Scala 2.8 breakout, I wanted to understand a bit more about the Scala method TraversableLike[A].map whose signature is as follows: