Or in other words what is the equivalent of C# IEnumerable<T> in Scala? I thought it is Seq[T], but I already found out, that HashMap does not implement this, so it cannot be true.
So, what is it?
|
Or in other words what is the equivalent of C# IEnumerable<T> in Scala? I thought it is Seq[T], but I already found out, that HashMap does not implement this, so it cannot be true. So, what is it? |
|||
|
From scala api doc for
And
Here is a nice pics from scala-lang site that represents scala collections hierarchy (mutable and immutable respectively):
Immutable:
|
|||||||
|
HashMapdoes implementSeq. Maybe you were looking atjava.util.HashMap? – Madoc Oct 13 '11 at 8:51