Tagged Questions
The mutability tag has no wiki summary.
11
votes
1answer
2k views
Scala: Mutable vs. Immutable Object Performance - OutOfMemoryError
I wanted to compare the performance characteristics of immutable.Map and mutable.Map in Scala for a similar operation (namely, merging many maps into a single one. See this question). I have what ...
9
votes
6answers
10k views
Copy & mutableCopy?
What is the difference between the "copy" & "mutableCopy"?
EDIT_001:
My original post was a bit of a mess, partly due to a lack of understanding and partly due to a bit of pilot error on my ...
7
votes
1answer
127 views
Mutable vs Ref variables in terms of capture
My superficial understanding of variables in f# suggests that declaring a variable to be 'mutable' and using a 'ref' variable essentially both do the same thing. They are both different ways to ...
7
votes
11answers
3k views
returning IList<T> vs Array in C#?
I was recently asking someone why he preferred to return a strongly-typed array over an IList. I had always thought that programming against an interface was the most flexible and best way program ...
6
votes
2answers
578 views
Mutability design patterns in Objective C and C++
Having recently done some development for iPhone, I've come to notice an interesting design pattern used a lot in the iPhone SDK, regarding object mutability.
It seems the typical approach there is ...
5
votes
3answers
376 views
Does “Value Restriction” practically mean that there is no higher order functional programming?
Does "Value Restriction" practically mean that there is no higher order functional programming?
I have a problem that each time I try to do a bit of HOP I get caught by a VR error. Example:
let ...
4
votes
5answers
301 views
Immutable views of mutable types
I have a project where I need to construct a fair amount of configuration data before I can execute a process. During the configuration stage, it's very convenient to have the data as mutable. ...
3
votes
1answer
131 views
Publishing Non-Thread Safe Object Fields in a Thread-Safe Manner
I've got a problem with Java concurrency. Yes, I looked at questions with almost the exact same title, but they all seemed to be asking subtly different things. Yes, I've read Java Concurrency in ...
3
votes
4answers
94 views
C99: Restricted Pointers to Document Thread Safety?
This question isn't about the technical usage of restricted, more about the subjective usage. Although I might be mistaken as to how restricted technically works, in which case you should feel free to ...
3
votes
5answers
153 views
C# equivalent of Python's id()?
Is there a C# equivalent to Python's id()? If not, how can I test if an object has changed? For example, in Python, an immutable object:
>>> s = "abc"
>>> id(s)
11172320
...
0
votes
6answers
251 views
Which types are mutable and immutable in the Google Go Language?
In Google Go, I read that Strings are immutable, ok but are int's?
What about other types? As a slightly older programmer I prefer mutability even though I know the benefits of immutability, I prefer ...
0
votes
5answers
68 views
keeping an argument unchanged in java mehod call
if I want to call a method like this:
List f(List l){
l.add(new Object());
return l;
}
All is fine except if I call the method, it actually modifies its argument, is there anyway ...
0
votes
1answer
71 views
Mixed vs. separated class mutability
In a partially mutable class, is it better to mix mutable fields with its immutable ones, or create a new class (or classes) that encapsulate them? Here's an example in C# of what I'm talking about:
...
0
votes
2answers
205 views
NSMutableArray can't be added to
I've had this sort of problem before, and it didn't get a satisfactory answer.
I have a viewcontroller with a property called "counties" that is an NSMutableArray. I'm going to drill down a ...