13,575 reputation
43470
bio website axel22.github.com
location Lausanne, Switzerland
age 27
visits member for 3 years, 1 month
seen 9 mins ago
stats profile views 780

A doctoral assistant at the EPFL and a member of the Scala team, interested in programming languages, data structures, concurrent and distributed computing.


Jun
14
comment Write performance scala immutable collections
Right -- +: is prepend for all collections and :+ is append for all collections. Lists have a special name for +: and that is ::, which is efficient, but their :+ is inefficient. Vectors strike a middle ground, having logarithmic complexity for both +: and :+.
Jun
14
revised Write performance scala immutable collections
added 64 characters in body
Jun
13
comment Write performance scala immutable collections
Right - corrected.
Jun
13
revised Write performance scala immutable collections
added 1 characters in body
Jun
13
revised Write performance scala immutable collections
added 1173 characters in body
Jun
13
answered Write performance scala immutable collections
Jun
12
answered Scala speed test and profiler
Jun
5
answered Scala convert Iterable or collection.Seq to collection.immutable.Seq
May
2
comment Scala - merging multiple iterators
Not that it would be particularly efficient, but you could always fold using the mergeStreams method. A custom Iterator implementation might be much more efficient, though.
May
1
comment Scala - merging multiple iterators
The mergeStreams only evaluates the heads of s1 and s2 -- their tails are never traversed. When you construct a new stream using #:: the mergeStreams method is not immediately called recursively -- it is called only when somebody calls tail on the resulting stream.
May
1
awarded  Enlightened
May
1
comment Scala - merging multiple iterators
No, it won't -- unless there is a bug in my implementation above that I am not seeing, the streams should avoid evaluating the elements that you have not yet iterated over. In particular, calling toStream above on the iter1 and iter2 is fully lazy.
May
1
comment Scala - merging multiple iterators
The values are cached with streams in general, indeed, but if you drop the reference to the head of the stream, then those values can be reclaimed by the garbage collector. If you take a look at the stream iterator implementation you will see that this is exactly what is being done (github.com/scala/scala/blob/v2.10.1/src/library/scala/…).
May
1
comment Why do Scala Ints lack the postfix increment operator, but HashMaps don't?
This is the idiom mainly seen in the collections part of the standard library, yes. Also a grep on the Scala repo can show that ++ is in general meant as non-side-effecting union operation. Note that this is different from ++= on mutable collections which adds all the elements of the right hand side collection into the mutable collection on the left.
May
1
answered Why do Scala Ints lack the postfix increment operator, but HashMaps don't?
May
1
comment Scala - merging multiple iterators
The memory footprint complexity and the asymptotic running time complexity stay the same with streams - it's only the absolute performance that could be worse.
May
1
comment Scala - merging multiple iterators
This was done in the example by using the Ordering context bound on T. The < comes from an implicit conversion to a value class, added in 2.10., but you could still use the compare method of the Ordering otherwise.
May
1
awarded  Nice Answer
May
1
comment Scala - merging multiple iterators
I edited the answer.
May
1
revised Scala - merging multiple iterators