active questions tagged scala - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T21:20:17Zhttp://stackoverflow.com/feeds/tag/scalahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1848694/default-value-for-generic-data-structure0Default value for generic data structureparadigmatic2009-12-04T18:11:32Z2009-12-04T19:06:03Z
<p>I would like to write a <code>SparseVector[T]</code> class where <code>T</code> can be a double, an int or a boolean.</p>
<p>The class will not be backed by an array (because I want a sparse data structure) but I have seen that when I build an empty array of an <code>AnyVal</code> type, the elements are initialized to the default value. For instance:</p>
<pre><code> scala> new Array[Int](10)
res0: Array[Int] = Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
scala> new Array[Boolean](10)
res1: Array[Boolean] = Array(false, false, false, false, false, false, false, false, false, false)
scala> new Array[Double](10)
res2: Array[Double] = Array(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
</code></pre>
<p>How can I include this default value in my class ? The behaviour I would like to get is:</p>
<pre><code>val v = new SparseVector[Double](100)
println( v(12) ) // should print '0.0'
val w = new SparseVector[Boolean](100)
println( v(85) ) // should print 'false'
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1843924/what-to-learn-after-php-scala-or-clojure5What to learn after PHP? Scala or Clojure?samsung2009-12-03T23:48:49Z2009-12-04T16:09:05Z
<p>I have a heavy web dev background with PHP. My reasons for learning a functional programming languages are:</p>
<ol>
<li>to improve my programming skills. It was heavily suggested that learning a FPL helps. this has high priority because I want to be better and better.</li>
<li>learn a general purpose programming language to solve tasks like scripting (OS scripting, text manipulation etc..)</li>
<li>to be used as an alternative for PHP in web development.</li>
</ol>
<p>Also which has the better community support, tutorials and books and the better web application framework?</p>
<p>Feel free to suggest other languages. Thanks!</p>
http://stackoverflow.com/questions/1818777/extend-scala-class-that-extends-ordered1Extend scala class that extends orderedDave2009-11-30T09:34:00Z2009-12-04T14:02:07Z
<p>I'm having trouble extending a base class that extends Ordered[Base]. My derived class can't extend Ordered[Derived] so can't be used as a key in a TreeMap. If I create a TreeMap[Base] and then just override compare in Derived that works but it's not what I want. I would like to be able to have the derived class as a key. Is there a way around this?</p>
<pre><code>case class A(x: Int) extends Ordered[A] {
def compare(that: A) = x.compare(that.x)
}
// Won't compile
// case class B(val y : Int) extends A(1) with Ordered[B] {
// def compare(that: B) = x.compare(that.x) match {
// case 0 => y.compare(that.y)
// case res => res
// }
// }
// Compiles but can't be used to define a TreeMap key
case class B(y: Int) extends A(1) {
override def compare(that: A) = that match {
case b: B => x.compare(b.x) match {
case 0 => y.compare(b.y)
case res => res
}
case _: A => super.compare(that)
}
}
def main(args: Array[String]) {
TreeMap[B, Int]() // Won't compile
}
</code></pre>
<p><strong>Edit</strong></p>
<p><a href="http://osdir.com/ml/lang.scala/2007-03/msg00128.html" rel="nofollow">This discussion</a> on the scala mailing list seems to be very relevant but it loses me a bit.</p>
http://stackoverflow.com/questions/1845266/can-first-class-functions-in-scala-be-a-concern-for-allocating-a-large-permgen-sp3Can First-class functions in Scala be a concern for allocating a large PermGen Space in JVM?Monis Iqbal2009-12-04T06:45:09Z2009-12-04T11:32:00Z
<p>Regarding first-class functions in Scala, it is written in the book Programming by Scala:</p>
<blockquote>
<p>A function literal is compiled into a
class that when instantiated at
run-time is a function value.</p>
</blockquote>
<p>When there will be many first-class functions used in a program, will this affect the JVM's PermGen space? because instead of simple functions the compiler is generating classes for each variation of the function value (e.g. in the case of varied definitions of partially applied functions).</p>
http://stackoverflow.com/questions/1575248/scala-2d-animation-library0Scala 2D Animation libraryElazar Leibovich2009-10-15T21:38:00Z2009-12-04T06:25:52Z
<p>Can anyone recommend a good 2D animation package for Scala? I prefer something which already have some basic events handling, more like <code>JavaFX</code> than like <code>processing.org</code>.</p>
http://stackoverflow.com/questions/1837547/erlang-and-scala-do-they-run-on-apache-4erlang and scala, do they run on apache?mrblah2009-12-03T04:03:19Z2009-12-04T05:03:35Z
<p>erlang and scala, do they run on apache?</p>
http://stackoverflow.com/questions/1842925/regex-matchdata-returning-null-why-not-optionstring3Regex.MatchData returning null: why not Option[String]?Brian Heylin2009-12-03T21:07:00Z2009-12-04T00:47:52Z
<p>Is there any particular reason why Regex.MatchData.group(i: Int): java.lang.String returns null rather than Option[String]?</p>
<p>Is there a "Scala Way" to handle nulls in Scala?</p>
http://stackoverflow.com/questions/1096285/is-scala-java-not-respecting-w3-excess-dtd-traffic-specs2Is Scala/Java not respecting w3 "excess dtd traffic" specs?mettadore2009-07-08T05:44:05Z2009-12-03T21:48:27Z
<p>I'm new to Scala, so I may be off base on this, I want to know if the problem is my code. Given the Scala file httpparse, simplified to:</p>
<pre><code>object Http {
import java.io.InputStream;
import java.net.URL;
def request(urlString:String): (Boolean, InputStream) =
try {
val url = new URL(urlString)
val body = url.openStream
(true, body)
}
catch {
case ex:Exception => (false, null)
}
}
object HTTPParse extends Application {
import scala.xml._;
import java.net._;
def fetchAndParseURL(URL:String) = {
val (true, body) = Http request(URL)
val xml = XML.load(body) // <-- Error happens here in .load() method
"True"
}
}
</code></pre>
<p>Which is run with (URL doesn't matter, this is a joke example):</p>
<pre><code>scala> HTTPParse.fetchAndParseURL("http://stackoverflow.com")
</code></pre>
<p>The result invariably:</p>
<pre><code> java.io.IOException: Server returned HTTP response code: 503 for URL: http://www.w3.org/TR/html4/strict.dtd
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1187)
at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.setupCurrentEntity(XMLEntityManager.java:973)
at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.startEntity(XMLEnti...
</code></pre>
<p>I've seen the <a href="http://stackoverflow.com/questions/998280/dtd-download-error-while-parsing-xhtml-document-in-xom">Stack Overflow thread</a> on this with respect to Java, as well as the <a href="http://www.w3.org/blog/systeam/2008/02/08/w3c%5Fs%5Fexcessive%5Fdtd%5Ftraffic" rel="nofollow">W3C's System Team Blog entry</a> about not trying to access this DTD via the web. I've also isolated the error to the XML.load() method, which is a Scala library method as far as I can tell.</p>
<p><strong>My Question: How can I fix this?</strong> Is this something that is a by product of my code (cribbed from <a href="http://blogs.sun.com/rafaelferreira/entry/pragmatic%5Fscala" rel="nofollow">Raphael Ferreira's post</a>), a by product of something Java specific that I need to address as in <a href="http://stackoverflow.com/questions/998280/dtd-download-error-while-parsing-xhtml-document-in-xom">the previous thread</a>, or something that is Scala specific? Where is this call happening, and is it a bug or a feature? (<em>"Is it me? It's her, right?"</em>)</p>
http://stackoverflow.com/questions/1827672/is-there-a-way-to-have-tuples-with-named-fields-in-scala-similar-to-anonymous-cl1Is there a way to have tuples with named fields in Scala, similar to anonymous classes in C#?Alex Black2009-12-01T17:25:31Z2009-12-03T15:53:07Z
<p>See: <a href="http://stackoverflow.com/questions/793415/use-of-anonymous-class-in-c">http://stackoverflow.com/questions/793415/use-of-anonymous-class-in-c</a></p>
<p>In C# you can write:</p>
<pre><code>var e = new { ID = 5, Name= "Prashant" };
assertEquals( 5, e.ID )
</code></pre>
<p>But in Scala I end up writing:</p>
<pre><code>var e = (5, "Prashant")
assertEquals( 5, e._1 )
</code></pre>
<p>Scala maintains type safety through the use of generics (as does C#), but loses the readability of the name of each field, e.g I use "_1" instead of "ID".</p>
<p>Is there anything like this in Scala?</p>
http://stackoverflow.com/questions/1839632/getting-the-correct-scala-actor-sender-reference-when-sending-from-an-different-c0Getting the correct scala actor sender reference when sending from an different classSebastian2009-12-03T12:37:25Z2009-12-03T12:50:15Z
<p>Within my actor I have to create a class which sends a message to another actor. The other actor should reply back to actor A</p>
<pre><code>class A extends Actor {
val b = new B
b.start
val i = new DefaultHandler() {
override def fun(a: String) = {
b ! payload
}
}
someotherclass.registerHandler(i)
def act = {
loop {
react {
case reply => //do something
}
class B extends Actor {
def act = {
loop {
react {
case msg => sender ! reply
}
}
</code></pre>
<p>The problem now is that while sending from the inner class I'm not within the actor itself anymore and as a result actor B does not get a correct reference to actor B. One way to fix this would be to pass a reference to A via the message but this seems quite ugly to me.</p>
<pre><code>val ref = self
val i = new DefaultClass() {
override def fun(a: String) = {
b ! message(payload, ref)
}
}
</code></pre>
<p>Is there a more elegant way to solve this? </p>
http://stackoverflow.com/questions/1833762/scala-reflection-getdeclaringtrait3scala reflection: getDeclaringTrait ? IttayD2009-12-02T15:48:02Z2009-12-03T09:53:43Z
<p>When I research a new library, I sometimes find it hard to locate the implementation of a method. </p>
<p>In Java, Metho#getDeclaringClass provides the class that declared a given method. So by iterating over Class#getMethods, I can find for each method, the class that declared it. </p>
<p>In Scala, traits are converted to Java interfaces and a class that extends a trait will implement the methods of the trait by forwarding them to a companion class defining these methods statically. This means, that Method#getDeclaringClass will return the class, not the trait:</p>
<pre><code>scala> trait A { def foo = {println("hi")}}
defined trait A
scala> class B extends A
defined class B
scala> classOf[B].getMethods.find(_.getName() == "foo").get.getDeclaringClass
res3: java.lang.Class[_] = class B
</code></pre>
<p>What is the best way to work around this? Meaning, given a class, how can I get a List[(Method, Class)] where each tuple is a method and the trait/class it was declared in?</p>
http://stackoverflow.com/questions/1837754/match-multiple-cases-classes-in-scala1Match multiple cases classes in scalatimdisney2009-12-03T05:00:02Z2009-12-03T09:51:10Z
<p>I'm doing matching against some case classes and would like to handle two of the cases in the same way. Something like this:</p>
<pre><code>abstract class Foo
case class A extends Foo
case class B(s:String) extends Foo
case class C(s:String) extends Foo
def matcher(l: Foo): String = {
l match {
case A() => "A"
case B(sb) | C(sc) => "B"
case _ => "default"
}
}
</code></pre>
<p>But when I do this I get the error:</p>
<pre><code>(fragment of test.scala):10: error: illegal variable in pattern alternative
case B(sb) | C(sc) => "B"
</code></pre>
<p>I can get it working of I remove the parameters from the definition of B and C but how can I match with the params?</p>
http://stackoverflow.com/questions/1836060/cant-extend-two-traits-that-have-a-method-with-the-same-signature3can't extend two traits that have a method with the same signature?IttayD2009-12-02T21:49:43Z2009-12-03T07:20:17Z
<p>Why is the error below? How to workaround it? </p>
<p>EDIT: I assumed that since A and B compile to (interface,class) pairs, it's a matter of choosing the right static method call to implement when compiling C. I would expect the priority to be according to order. </p>
<pre>
scala> trait A {def hi = println("A")}
defined trait Ascala> trait A {def hi = println("A")}
defined trait A
scala> trait B {def hi = println("B")}
defined trait B
scala> class C extends B with A
:6: error: error overriding method hi in trait B of type => Unit;
method hi in trait A of type => Unit needs `override' modifier
class C extends B with A
scala> trait A {override def hi = println("A")}
:4: error: method hi overrides nothing
trait A {override def hi = println("A")}
</pre>
<p>EDIT: note that in Ruby this works well:</p>
<pre>
>> module B; def hi; puts 'B'; end; end
=> nil
>> module A; def hi; puts 'A'; end; end
=> nil
>> class C; include A; include B; end
=> C
>> c = C.new
=> #
>> c.hi
B
=> nil
</pre>
http://stackoverflow.com/questions/1823441/appengine-performance-problem-same-site-10x-faster-accessing-from-appspot-than-f4Appengine performance problem. Same site 10x faster accessing from appspot than from my domainDamian2009-12-01T01:13:05Z2009-12-03T00:18:04Z
<p>This is really strange to me and it's becoming into a <strong>real</strong> problem.</p>
<p>I'm building a site in appengine (java) using scala and It's working really slow when accessed from my domain:</p>
<pre><code>/latest 200 1505ms 2325cpu_ms 1586api_cpu_ms 4kb
</code></pre>
<p>But when accessed from appspot it works <strong>much</strong> faster:</p>
<pre><code>/latest 200 180ms 269cpu_ms 221api_cpu_ms 4kb
</code></pre>
<p>I've buyed the domain through google apps so it's automatically configured. I can't figure out how can this be happening... Can it be something in my code? Or is it something about configuration?</p>
<p>The problem is perfectly reproducible, and if you need to see the speed difference it's noticeable by simply accessing the site. these are the links:<br>
<a href="http://secretsapp.appspot.com/latest" rel="nofollow">http://secretsapp.appspot.com/latest</a><br>
<a href="http://www.whatasecret.com/latest" rel="nofollow">http://www.whatasecret.com/latest</a></p>
<p>Thanks a lot.</p>
http://stackoverflow.com/questions/1832949/enums-in-scala-with-multiple-constructor-parameters1Enums in Scala with multiple constructor parametersgrkuntzmd2009-12-02T13:35:53Z2009-12-02T20:57:03Z
<p>I am writing my first large Scala program. In the Java equivalent, I have an enum that contains labels and tooltips for my UI controls:</p>
<pre><code>public enum ControlText {
CANCEL_BUTTON("Cancel", "Cancel the changes and dismiss the dialog"),
OK_BUTTON("OK", "Save the changes and dismiss the dialog"),
// ...
;
private final String controlText;
private final String toolTipText;
ControlText(String controlText, String toolTipText) {
this.controlText = controlText;
this.toolTipText = toolTipText;
}
public String getControlText() { return controlText; }
public String getToolTipText() { return toolTipText; }
}</code></pre>
<p>Never mind the wisdom of using enums for this. There are other places that I want to do similar things.</p>
<p>How can I do this in Scala using scala.Enumeration? The Enumeration.Value class takes only one String as a parameter. Do I need to subclass it?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1831520/relation-between-language-and-scalability2Relation between language and scalabilityidazuwaika2009-12-02T08:45:14Z2009-12-02T19:24:15Z
<p>I came across the following statement in Trapexit, an Erlang community website:</p>
<blockquote>
<p>Erlang is a programming language used
to build massively scalable soft
real-time systems with requirements on
high availability.</p>
</blockquote>
<p>Also I recall reading somewhere that Twitter switched from Ruby to Scala to address scalability problem.</p>
<p><strong>Hence, I wonder what is the relation between a programming language and scalability?</strong></p>
<p>I would think that scalability depends only on the system design, exception handling etc. Is it because of the way a language is implemented, the libraries, or some other reasons?</p>
<p>Hope for enlightenment. Thanks.</p>
http://stackoverflow.com/questions/1157564/mapping-over-multiple-seq-in-scala6Mapping over multiple Seq in Scalabsdfish2009-07-21T06:29:03Z2009-12-02T12:22:22Z
<p>Suppose I have</p>
<pre><code>val foo : Seq[Double] = ...
val bar : Seq[Double] = ...
</code></pre>
<p>and I wish to produce a seq where the baz(i) = foo(i) + bar(i). One way I can think of to do this is</p>
<pre><code>val baz : Seq[Double] = (foo.toList zip bar.toList) map ((f: Double, b : Double) => f+b)
</code></pre>
<p>However, this feels both ugly and inefficient -- I have to convert both seqs to lists (which explodes with lazy lists), create this temporary list of tuples, only to map over it and let it be GCed. Maybe streams solve the lazy problem, but in any case, this feels like unnecessarily ugly. In lisp, the map function would map over multiple sequences. I would write</p>
<pre><code>(mapcar (lambda (f b) (+ f b)) foo bar)
</code></pre>
<p>And no temporary lists would get created anywhere. Is there a map-over-multiple-lists function in Scala, or is zip combined with destructuring really the 'right' way to do this?</p>
http://stackoverflow.com/questions/1832061/scala-pass-seq-to-var-args-functions1Scala: pass Seq to var-args functionsDavid Crawshaw2009-12-02T10:35:43Z2009-12-02T11:16:57Z
<p>Given a function that takes a variable number of arguments, e.g.</p>
<pre><code>def foo(os: String*) =
println(os.toList)
</code></pre>
<p>How can I pass a sequence of arguments to the function? I would like to write:</p>
<pre><code>val args = Seq("hi", "there")
foo(args)
</code></pre>
<p>Obviously, this does not work.</p>
http://stackoverflow.com/questions/1831569/scala-partialfunction-with-state1scala: PartialFunction with stateIttayD2009-12-02T08:52:32Z2009-12-02T09:57:19Z
<p>In scala I can write:</p>
<pre><code>val pf: PartialFunction[String, Unit] = {case s => println(s)}
</code></pre>
<p>Now I can pass pf around, calling it with appropriate values. </p>
<p>I'm looking for a concise way of being able to define such a pf so that it can have a state. Say a counter of how many times it has been called. One way is this:</p>
<pre><code>var counter = 0
val pf: PartialFunction[String, Unit] = {case s => counter +=1; println(s)}
</code></pre>
<p>What I don't like here is that it is not concise and the state is exposed.</p>
http://stackoverflow.com/questions/1827696/scala-treemap-strangeness-implementing-a-reverse-order-iterator1Scala TreeMap strangeness; implementing a reverse-order iteratoroxbow_lakes2009-12-01T17:29:34Z2009-12-01T18:25:01Z
<p>I have a <code>Map[Long, String]</code> which I would like iterate over in descending order of the keys. The way I chose to do this was as follows:</p>
<pre><code>var m: SortedMap[Long, String] = TreeMap.empty( (l: Long) => -l)
m ++= Map(2L -> "Hello", 1L -> "World", 3L -> "Chris")
println(m) //Map(3 -> Chris, 1 -> World, 2 -> Hello)
</code></pre>
<p>I'm really not sure I understand why this didn't work and can only assume I've made some stupid mistake. Of course the following works:</p>
<pre><code>var m: SortedMap[Long, String] = TreeMap.empty( (l: Long) => new Ordered[Long] {
def compare(a: Long) = -l.compare(a)
})
m ++= Map(2L -> "Hello", 1L -> "World", 3L -> "Chris")
println(m) //Map(3 -> Chris, 2 -> Hello, 1 -> World)
</code></pre>
http://stackoverflow.com/questions/1824524/how-to-add-local-dependencies-in-buildr2How to add local dependencies in buildrparadigmatic2009-12-01T07:19:56Z2009-12-01T17:01:12Z
<p>For a java/scala project I have some dependencies that are not in a remote repository, but somewhere else in my filesystem. I have then two options, which lead to questions:</p>
<ol>
<li><p>I can add a <code>lib/</code> directory in my project folder. How can I tell buildr to add the content to the class path ?</p></li>
<li><p>I can use the builtin dependencies management system. Can I indicate a filesystem repository path instead of an http one ?</p></li>
</ol>
<p>Thanks</p>
http://stackoverflow.com/questions/1826145/how-to-write-a-lazy-variable-argument-version-of-orelse4How to write a lazy, variable argument version of "orElse"Matt R2009-12-01T13:19:29Z2009-12-01T16:46:48Z
<p>Is it possible to write a generalised <code>orElse</code> method from <code>Option</code> that takes a variable number of arguments? That is, instead of:</p>
<pre><code>lazy val o1 = { println("foo"); None }
lazy val o2 = { println("bar"); Some("bar") }
lazy val o3 = { println("baz"); Some("baz") }
// ...
o1 orElse o2 orElse o3 // orElse ...
</code></pre>
<p>You could use:</p>
<pre><code>orElse(o1, o2, o3) //, ...
</code></pre>
http://stackoverflow.com/questions/1822481/remove-characters-from-the-end-of-a-string-scala4Remove Characters from the end of a String ScalaBrian Heylin2009-11-30T21:23:12Z2009-12-01T03:10:51Z
<p>What is the simplest method to remove the last character from the end of a String in Scala?</p>
<p>I find Rubys String class has some very useful methods like <em>chop</em>. I would have used "oddoneoutz".headOption in Scala, but it is depreciated. I don't want to get into the overly complex:</p>
<pre><code>string.slice(0, string.length - 1)
</code></pre>
<p>Please someone tell me there is a nice simple method like chop for something this common.</p>
http://stackoverflow.com/questions/1820777/is-it-possible-to-use-implicit-conversions-for-parameters-to-extractors-unapply1Is it possible to use implicit conversions for parameters to extractors (unapply) in Scala?Alex Black2009-11-30T16:16:51Z2009-11-30T19:26:00Z
<p>I have created a class called CaseInsensitive which wraps a string (see <a href="http://stackoverflow.com/questions/1745910/implementing-a-string-class-that-does-case-insensitive-comparisions-in-scala">http://stackoverflow.com/questions/1745910/implementing-a-string-class-that-does-case-insensitive-comparisions-in-scala</a>).</p>
<p>I've created a case class which has a member variable of type CaseInsensitive, so it gets a default unapply method, which extracts a variable of type CaseInsensitive, but I was hoping to use it like this:</p>
<pre><code>case class PropertyKey( val name : CaseInsensitive )
val foo = new PropertyKey("foo")
val result = foo match {
case PropertyKey("foo") => true
case _ => false
}
</code></pre>
<p>This code fails to compile: (on the extractor line, not the constructor line)</p>
<pre><code>type mismatch;
found : java.lang.String("foo")
required: com.acme.CaseInsensitive
</code></pre>
<p>But I thought my implicit conversions from String to CaseInsensitive would enable this to compile, rather than me having to type the more verbose:</p>
<pre><code>case class PropertyKey( val name : CaseInsensitive )
val foo = new PropertyKey("foo")
val result = foo match {
case PropertyKey(CaseInsensitive("foo")) => true
case _ => false
}
</code></pre>
<p>Here is the implementation of CaseInsensitive:</p>
<pre><code>/** Used to enable us to easily index objects by string, case insensitive
*
* Note: this class preserve the case of your string!
*/
case class CaseInsensitive ( val _s : String ) extends Proxy {
require( _s != null)
val self = _s.toLowerCase
override def toString = _s
def i = this // convenience implicit conversion
}
object CaseInsensitive {
implicit def CaseInsensitive2String(c : CaseInsensitive) = if ( c == null ) null else c._s
implicit def StringToCaseInsensitive(s : String) = CaseInsensitive(s)
def fromString( s : String ) = s match {
case null => None
case _ => Some(CaseInsensitive(s))
}
}
</code></pre>
http://stackoverflow.com/questions/1818181/scala-tracing-implicits-selection-and-other-code-magics3scala: tracing implicits selection and other code magicsIttayD2009-11-30T06:36:31Z2009-11-30T15:56:17Z
<p>When trying to figure how a library works, implicit conversions are confusing. For example, looking at an expression like 'val foo: Foo = 1', what converts 1 to Foo? </p>
<p>Is it possible to instruct the scala library (or REPL) to print out the code paths that are executing while evaluating an expression?</p>
http://stackoverflow.com/questions/1812875/thread-monitoring-for-scala-actors3Thread monitoring for scala actorsparadigmatic2009-11-28T16:04:26Z2009-11-29T22:14:12Z
<p>Is there a way to monitor how many threads are actually alive and running my scala actors ?</p>
http://stackoverflow.com/questions/1810305/do-i-have-to-create-a-new-object-to-mix-in-a-scala-trait3Do I have to create a new object to mix in a Scala trait?Motlin2009-11-27T19:19:33Z2009-11-29T20:53:23Z
<p>In Scala 2.8, calling groupBy() on a collection returns a Map where the values are collections, but I want a MultiMap. What's the easiest way to do the conversion? Can I avoid creating a new MultiMap and copying everything over? </p>
http://stackoverflow.com/questions/1815503/what-are-the-differences-and-similarities-of-scala-and-haskell-type-systems2What are the differences and similarities of Scala and Haskell type systems?Ćukasz Lew2009-11-29T13:10:30Z2009-11-29T20:03:18Z
<p>How to explain Scala's type system to a Haskell expert?
What examples show Scala's advantages?</p>
<p>How to explain Haskell's type system to an advanced Scala practitioner?
What can be done in Haskell that can't be done in Scala?</p>
http://stackoverflow.com/questions/1815716/accessing-scala-parser-regular-expression-match-data3Accessing Scala Parser regular expression match dataBrian Heylin2009-11-29T14:49:18Z2009-11-29T17:06:14Z
<p>I wondering if it's possible to get the MatchData generated from the matching regular expression in the grammar below.</p>
<pre><code>object DateParser extends JavaTokenParsers {
....
val dateLiteral = """(\d{4}[-/])?(\d\d[-/])?(\d\d)""".r ^^ {
... get MatchData
}
}
</code></pre>
<p>One option of course is to perform the match again inside the block, but since the RegexParser has already performed the match I'm hoping that it passes the MatchData to the block, or stores it?</p>
http://stackoverflow.com/questions/1813575/its-a-good-idea-use-ruby-for-socket-programming1It's a good idea use ruby for socket programming?Hector Villalobos2009-11-28T19:47:04Z2009-11-29T00:26:59Z
<p>My language of choice is Ruby, but I know because of twitter that Ruby can't handle a lot of requests. It is a good idea using it for socket development? or Should I use a functional language like erlang or haskell or scala like twitter developers did?</p>