Is there a way to convert (wrap) a mutable Map to immutable in O(1) time (that is, not by copying the values, but similar to what is done in JavaConversions)
|
feedback
|
|
There is a read only projection for mutable maps.
As oxbow_lakes pointed out the underlying Map is still mutable and may change after the read-only projection is published to clients. The illusion of immutability has to addressed in code managing the map. | |||||
feedback
|
|
As Thomas points out, the read only view is O(1). But read-only doesn't equate to immutability. The difference is well descrived in the "Fighting Bit Rot" paper:
Perhaps it's just a simple as up-casting.
| |||||
feedback
|
|
One could in principle add a "freeze" method to a mutable data structure that prevented further mutation. This is the only even slightly-safe way to do the wrapping. (Only slightly because after that you'd have to throw exceptions when you tried to mutate it.) Scala's mutable collections don't have this capability, however. One could add it to e.g. mutable.HashMap by overriding all mutating methods ( | |||
|
feedback
|
|
What you are asking for is inherently unsafe. You can either pass the | |||||
feedback
|
|
Philipp Haller's work on Capabilities for Uniqueness and Borrowing is related to this. There's a lot of other work in the domain of enforcing "ownership" through the type system, but Philipp actually provides a usable plugin to the Scala compiler. | |||
|
feedback
|