In javascript, we can do:
["a string", 10, {x : 1}, function() {}].push("another value");
What is the Scala equivalent?
|
|
|
Arrays in Scala are very much homogeneous. This is because Scala is a statically typed language. If you really need pseudo-heterogeneous features, you need to use an immutable data structure that is parametrized covariantly (most immutable data structures are).
The result will be of type Incidentally, the "literal syntax" for arrays in Scala is as follows:
See also: More info on persistent vectors |
|||||||||||||||||
|
|
Scala will choose the most specific Array element type which can hold all values, in this case it needs the most general type
The resulting array will be of type |
|||
|
|
|
Scala might get the ability for a "heterogeneous" list soon: HList in Scala |
|||||
|
|
Personally, I would probably use tuples, as herom mentions in a comment.
But you cannot append to such structures easily. The HList mentioned by ePharaoh is "made for this" but I would probably stay clear of it myself. It's heavy on type programming and therefore may carry surprising loads with it (i.e. creating a lot of classes when compiled). Just be careful. A HList of the above (needs MetaScala library) would be (not proven since I don't use MetaScala):
You can append etc. (well, at least prepend) to such a list, and it will know the types. Prepending creates a new type that has the old type as the tail. Then there's one approach not mentioned yet. Classes (especially case classes) are very light on Scala and you can make them as one-liners:
Of course, this will not handle appending either. |
|||
|
|