Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

77
votes
11answers
21k views

C++ 'mutable' keyword

A while ago I came across some code that marked a member variable of a class with the 'mutable' keyword. As far as I can see it simply allows you to modify a variable in a 'const' method: class Foo ...
57
votes
10answers
6k views

Why are mutable structs evil?

Following the discussions here on SO I already read several times the remark that mutable structs are evil (like in the answer to this question). What's the actual problem with mutability and ...
48
votes
4answers
17k views

Mutable vs immutable objects

I'm trying to get my head around mutable vs immutable objects. Using mutable objects gets a lot of bad press (e.g. returning an array of strings from a method) but I'm having trouble understanding ...
27
votes
5answers
366 views

What is a “mostly complete” (im)mutability approach for C#?

Since immutability is not fully baked into C# to the degree it is for F#, or fully into the framework (BCL) despite some support in the CLR, what's a fairly complete solution for (im)mutability for ...
20
votes
8answers
816 views

Why the “mutable default argument fix” syntax is so ugly, asks python newbie

Now following my series of "python newbie questions" and based on another question. Prerogative Go to ...
19
votes
5answers
2k views

Clojure mutable storage types

I'm attempting to learn Clojure from the API and documentation available on the site. I'm a bit unclear about mutable storage in Clojure and I want to make sure my understanding is correct. Please let ...
18
votes
3answers
598 views

Unexpected feature in a Python list of lists

I needed to create a list of lists in Python, so I typed the following: myList = [[1] * 4] * 3 The list looked like this: [[1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1]] Then I changed one of ...
15
votes
1answer
193 views

How to get a List of (immutable and mutable) Sets in scala?

I try to build a list of (mutable and immutable) Sets. The compiler gets into trouble as it cannot figure out the type of that list. I always thought that I can connect Lists of any types and that the ...
15
votes
4answers
358 views

What is the theory behind mutable and immutable types?

One of the things that I admire about Python is its distinction between mutable and immutable types. Having spent a while programming in c before coming to Python, I was astonished at how easily ...
15
votes
4answers
397 views

Why does capturing a mutable struct variable inside a closure within a using statement change its local behavior?

Update: Well, now I've gone and done it: I filed a bug report with Microsoft about this, as I seriously doubt that it is correct behavior. That said, I'm still not 100% sure what to believe regarding ...
13
votes
3answers
759 views

How are mutable arrays implemented in Haskell?

I've read many research papers on this topic, and they usually argue that arrays are implemented using Monads. But none of these papers gave a clear definition of how the "type" Array itself should be ...
10
votes
3answers
246 views

Haskell real-time update and lookup performance

I am writing a game-playing ai (aichallenge.org - Ants), which requires a lot of updating of, and referring to data-structures. I have tried both Arrays and Maps, but the basic problem seems to be ...
9
votes
2answers
191 views

Mutable, (possibly parallel) Haskell code and performance tuning

I have now implemented another SHA3 candidate, namely Grøstl. This is still work in progress (very much so), but at the moment a 224-bit version pass all KATs. So now I'm wondering about performance ...
9
votes
2answers
229 views

Scala: Contains in mutable and immutable sets

I've discovered a strange behavior for mutable sets which I cannot understand: I have a object which I want to add to a set. The equals method for the class is overridden. When I add two different ...
9
votes
3answers
185 views

Is modifying a value type from within a using statement undefined behavior?

This one's really an offshoot of this question, but I think it deserves its own answer. According to section 15.13 of the ECMA-334 (on the using statement, below referred to as resource-acquisition): ...
9
votes
5answers
490 views

Using volatile keyword with mutable object

In Java, I understand that volatile keyword provides visibility to variables. The question is, if a variable is a reference to a mutable object, does volatile also provide visibility to the members ...
9
votes
4answers
800 views

Logical const in D

D has two types of constness: immutable variables are ones that were declared immutable, and always will be immutable, while const variables are simply read only versions of an object. Logical const ...
9
votes
4answers
575 views

F#: let mutable vs. ref

First, I acknowledge the possibility that this question could be a duplicate; just let me know. I'm curious what the general "best practice" is for those situations when mutability is desired. F# ...
8
votes
3answers
457 views

No Scala mutable list

Scala has both a mutable and an immutable Map , but it has only an immutable List. If you want a mutable List you need a ListBuffer. I don't understand why this is so. Any one knows?.
8
votes
2answers
2k views

Converting mutable to immutable map

private[this]object MMMap extends HashMap[A, Set[B]] with MultiMap[A, B] How convert it to immutable?
8
votes
6answers
552 views

Should this immutable struct be a mutable class?

I showed this struct to a fellow programmer and they felt that it should be a mutable class. They felt it is inconvenient not to have null references and the ability to alter the object as required. I ...
8
votes
9answers
556 views

strings in C++

I have following questions regarding strings in C++ 1>> which is a better option(considering performance) and why? 1. string a; a = "hello!"; OR 2. string *a; a = new string("hello!"); ... ...
7
votes
1answer
107 views

C++ How affects mutable keyword to the performance of container?

I want to know how mutable affects a container (map, vector, list, ...). In addition, what do I have to bear in mind?
7
votes
1answer
140 views

How to append or prepend on a Scala mutable.Seq

There's something I don't understand about Scala's collection.mutable.Seq. It describes the interface for all mutable sequences, yet I don't see methods to append or prepend elements without creating ...
7
votes
2answers
418 views

Why is there no mutable TreeMap in Scala?

Is it lack of time, some technical problem or is there a reason why it should not exist?
6
votes
3answers
124 views

Why are System.Windows.Point & System.Windows.Vector mutable?

Given that mutable structs are generally regarded as evil (e.g., Why are mutable structs evil?), are there potential benefits that might have prompted the designers of the .NET framework to make ...
6
votes
3answers
104 views

How can I improve this design that forces me to declare a member function const and declare variables mutable?

For some reason I am iterating over elements of a class in an std::set and would like to slightly modify the keys, knowing that the order will be unchanged. Iterators on std::set are const_iterators ...
6
votes
2answers
210 views

Java Mutable BigInteger Class

I am doing calculations with BigIntegers that uses a loop that calls multiply() about 100 billion times, and the new object creation from the BigInteger is making it very slow. I was hoping somebody ...
6
votes
3answers
119 views

Can I always convert mutable-only algorithms to single-assignment and still be efficient?

The Context The context of this question is that I want to play around with Gene Expression Programming (GEP), a form of evolutionary algorithm, using Erlang. GEP makes use of a string based DSL ...
6
votes
6answers
2k views

(Java) Is Integer Immutable

I know this is probably very stupid, but a lot of places claim that the Integer class in Java is immutable, yet the following code: Integer a=3; Integer b=3; a+=b; System.out.println(a); Executes ...
6
votes
2answers
6k views

Loading a resource to a mutable bitmap

I am loading a bitmap from a resource like so: Bitmap mBackground = BitmapFactory.decodeResource(res,R.drawable.image); What I want to do is make some changes to the bitmap before It gets drawn to ...
6
votes
3answers
308 views

Java Collections with Mutable Objects

How does a TreeSet, HashSet or LinkedHashSet behave when the objects are mutable? I cannot imagine that they would work in any sense? If I modify an object after I have added it; what is the ...
6
votes
6answers
578 views

Mutable class as a child of an immutable class

I want to have immutable Java objects like this (strongly simplified): class Immutable { protected String name; public Immutable(String name) { this.name = name; } public ...
5
votes
3answers
108 views

How to rewrite C++ code that uses mutable in D?

If you needed to rewrite the following C++ code in D, how would you do it? struct A{ const S* _s; B _b; C _c; mutable C _c1, _c2; A(const B& b, const C& c, const S* s){ ...
5
votes
3answers
75 views

Python scoping mutable vs immutable

First I'm going to start like everyone else. I'm new to python. My teacher gave me the problem: def f(a, b, c): a = 1 c = b c[0] = 2 a = 10 b = [11, 12, 13] c = [13, 14, 15] ...
5
votes
4answers
222 views

Immutable vs mutable types - Python

I'm confused on what an immutable type is. I know the float object is considered to be immutable, with this type of example from my book: class RoundFloat(float): def __new__(cls, val): ...
5
votes
3answers
136 views

advantages of stateful programming? [closed]

i was wondering about the benefits of stateless programming, and found someone who shared my question: Advantages of stateless programming? as i read through the answers though, it made me curious ...
5
votes
4answers
125 views

When does -copy return a mutable object?

I read in Cocoa and Objective C: Up and Running that -copy will always return an immutable object and -mutableCopy will always return a mutable object: It’s important to know that calling -copy on ...
5
votes
3answers
241 views

How to use mutable collections in Scala

I think I may be failing to understand how mutable collections work. I would expect mutable collections to be affected by applying map to them or adding new elements, however: scala> val s: ...
5
votes
4answers
183 views

Are new vectors created even if the old ones aren't used anymore?

This question is about the Data.Vector package. Given the fact that I'll never use the old value of a certain cell once the cell is updated. Will the update operation always create a new vector, ...
5
votes
2answers
233 views

How to automatically translate pure code into code that uses mutable arrays for efficiency?

This is a Haskell question, but I'd also be interested in answers about other languages. Is there a way to automatically translate purely functional code, written to process either lists or immutable ...
5
votes
1answer
162 views

Python: Replacing an element in a list of lists (#2)

A previous question with the same title as mine has been posted, with (I think) the same question, but had other problems in the code. I was not able to determine if that case was identical to mine or ...
5
votes
4answers
184 views

python: changing dictionary returned by groupdict()

Is it safe to modify a mutable object returned by a method of a standard library object? Here's one specific example; but I'm looking for a general answer if possible. #m is a MatchObject #I know ...
5
votes
5answers
519 views

Const method that modifies *this without const_cast

The following pattern has arisen in a program I'm writing. I hope it's not too contrived, but it manages to mutate a Foo object in the const method Foo::Questionable() const, without use of any ...
5
votes
1answer
116 views

How do functional language gui bindings work?

Do they typically use non functional aspects of the language (including mutable variables). Are there other strategies? Could you describe them?
5
votes
2answers
261 views

C# How can I tell if an IEnumerable is Mutable?

I want a method to update certain entries of an IEnumerable. I found that doing a foreach over the entries and updating the values failed as in the background I was cloning the collection. This was ...
5
votes
1answer
192 views

How to create pointer-to-mutable-member?

Consider the following code: struct Foo { mutable int m; template<int Foo::* member> void change_member() const { this->*member = 12; // Error: you cannot assign to a ...
5
votes
1answer
610 views

Why did Matz choose to make Strings mutable by default in Ruby?

It's the reverse of this question: http://stackoverflow.com/questions/93091/why-cant-strings-be-mutable-in-java-and-net Was this choice made in Ruby only because operations (appends and such) are ...
5
votes
4answers
1k views

Haskell mutable map/tree

I am looking for a mutable (balanced) tree/map/hash table in Haskell or a way how to simulate it inside a function. I.e. when I call the same function several times, the structure is preserved. So far ...
5
votes
3answers
881 views

Cocoa: Testing to find if an NSString is immutable or mutable?

This produces an immutable string object: NSString* myStringA = @"A"; //CORRECTED FROM: NSMutableString* myStringA = @"A"; This produces a mutable string object: NSMutableString* myStringB = ...

1 2 3 4