Scala 2.9.0 final
11–17 of 17 posts
Re: Scala 2.9.0 final
#12anyone know when the pace of evolution of scala will drop?
how could that possibly be known? Hopefully never, if you ask me.
so yes, it probably is possible to answer this question to some degree if you've been watching scala grow. i haven't, which is why i asked.
Re: Scala 2.9.0 final
#13Earlier quoted context omitted.
This to me is amazing in it's brevity: //Uses 4 threads (1 to 4).par.foreach(x => /*some long computation*/ } I'd love to see how other languages can do it more tersely with their standard libraries.
In python: from multiprocessing import Pool p = Pool(4) # 4 worker threads p.map(somefunc, someiter) Not sure if this is apples-to-apples. Regardless, I'm always skeptical of the behavior of threaded code, even if it's embarrassingly parallel stuff that is divided among workers.
Re: Scala 2.9.0 final
#14anyone know when the pace of evolution of scala will drop?
Re: Scala 2.9.0 final
#15I really hate that their collection joining method is called `mkString` instead of `join` like it is in C#, JavaScript, Python, Ruby, and others.
THAT part of it I hate; we, as programmers, often rely far too heavily and broadly on mapping what we see to what it means. Call stuff what it is.