What\'s the best way to do file IO in Scala 2.8? All I want to do is cut a massive CSV file into lots of smaller ones with, say 1000 lines of data per file, 开发者_Python百科and each file retaining t
I\'m playing around with scala (scala 2.8).Suppose I have a class with a nested trait, and want to use that nested trait as the type for a parameter in the class\'s constructor.Is that even possible?T
As the title says, when creating a multidimensional sequence in scala with tabulate, is the innermost or outermost sequence the 1. dimension?
I wanted to ask if there is a list of annotations for Scala 2.8.0? I stumbled upon @inline and @specialized but it would be nice if there is a complete list which also explains what they do exactly.
Using Scala 2.7.7, this works as ex开发者_高级运维pected: import scala.collection.mutable.Stack
I\'ve seen several Scala questions recently (e.g. here, here, and here) that called for the use of proxies, and it\'s come up more than once in my own work.The Scala library has a number of proxy trai
What are package objects, not so much the concept but their usage? I\'ve tried to get an example working and the only form I got to work was as follows:
I want to write a implicit conversion of Tuple2[A,B] to Seq[C] where C is super type of both A and B.
I\'ve been experiencing confusion over packaging classes in Scala and importing packages. Let me start with a pair of simple source files:
I wonder if there is any determinism when calling val delegate = RemoteActor.select(). I\'m asking this, because I noticed that the program doesn\'t terminate, when I\'m sending delegates over the net