6
votes
2answers
78 views
Why doesn’t Scala Source close the underlying InputStream?
I'm using Scala Source.fromFile however I can't seem to find a nice way of getting it to close the underlying InputStream once the file has been read.
Here's my code that will fai …
2
votes
5answers
137 views
Concurrent map/foreach in scala
I have an iteration vals: Iterable[T] and a long-running function without any relevant side effects: f: (T => Unit). Right now this is applied to vals in the obvious way:
vals.for …
2
votes
5answers
114 views
Scala difference between object and class
Greetings,
I'm just going over some scala tutorials on the net and have noticed in some examples an object is declared at the start of the example.
Can anyone explain to me wha …
30
votes
10answers
989 views
Is the Scala 2.8 collections library a case of “the longest suicide note in history” ?
First note the inflammatory subject title is a quotation made about the manifesto of a UK political party in the early 1980s. This question is subjective but it is a genuine questi …
1
vote
3answers
102 views
Approaching Text Parsing in Scala
I'm making an application that will parse commands in Scala. An example of a command would be:
todo get milk for friday
So the plan is to have a pretty smart parser break the li …
1
vote
2answers
64 views
scala: anything like python/ruby development mode?
What I mean by the title is, whether there's a free framework/tool that allows me to write .scala files and have them reloaded & compiled automatically by the (web) server with …
0
votes
1answer
65 views
How can I serialize (and later deserialize) a generic type in Scala?
Say I'd like to implement something like this:
def serialize( list: List[_] ) : Node = {
<list>
{ for ( item <- list ) yield serializeItem(item) }
</list>
}
…
1
vote
1answer
25 views
How to resolve java.nio.charset.UnmappableCharacterException in Scala 2.8.0?
I'm using Scala 2.8.0 and trying to read pipe delimited file like in code snipped below:
object Main {
def main(args: Array[String]) :Unit = {
if (args.length > 0) {
…
0
votes
2answers
49 views
How can I get XStream to output Scala lists nicely? Can I write a custom converter?
This code:
println(new XStream.toXML(List(1,2,3)))
produces this XML:
<scala.coloncolon serialization="custom">
<unserializable-parents/>
<scala.coloncolon&g …
4
votes
5answers
111 views
Could/should an implicit conversion from T to Option[T] be added/created in Scala?
Is this an opportunity to make things a bit more efficient (for the prorammer): I find it gets a bit tiresome having to wrap things in Some, e.g. Some(5). What about something lik …
0
votes
2answers
42 views
Is pretty XStream serialization feasible with Scala?
I'm trying out XStream as a way to quickly serialize objects to Xml or JSON to send over the wire, and deserialize. I do want the XML/JSON to be simple/clean.
It seems to work we …
1
vote
1answer
50 views
Is there a problem-free way to run Scala 2.7.7 unit tests in Eclipse integrated nicely?
I'm developing Scala code using Eclipse, often when I run tests I get this error:
No tests found with test runner 'JUnit 3'.
Environment:
Eclipse for Java Developers, 3.5.1
Sca …
2
votes
3answers
92 views
Implementing a string class that does case insensitive comparisions in Scala
I've got a number of classes with fields that are meant to be case insensitive, and I'd like to put the instances of these classes into HashMaps and look them up by string case ins …
6
votes
6answers
266 views
To use or not to use Scala for new Java projects ?
Hi,
I'm impressed with twitter and investigating to use Scala for a new large scale web project with Hibernate and Wicket. What do you think about Scala, and should I use it instea …
3
votes
3answers
58 views
How to subclass an object with a var in its primary constructor
I'm wanting to do something like this:
class A (var updateCount: Int) {
}
class B (val name: String, var updateCount: Int) extends A(updateCount) {
def inc(): Unit = {
upda …
