A mutable can be modified after it is created.
0
votes
1answer
30 views
Mutable variable is accessible from closure. How can I fix this?
I am using Typeahead by twitter. I am running into this warning from Intellij. This is causing the "window.location.href" for each link to be the last item in my list of items.
How can I fix my code?
...
-1
votes
0answers
46 views
Python classes - why do my lists get over-written and not append
I am new to Python classes and am confused about the behavior of the mutable variables.
I have created a dictionary of classes of different county attributes, and that seems to work fine. However, ...
-4
votes
1answer
134 views
Why are strings classified as immutable values? [closed]
Why are strings classified as immutable values?
[|'H';'i'|].[1] <- 'o'
3
votes
2answers
53 views
Is taking advantage of the one-time binding of function arguments a bad idea?
New python users often get tripped up by mutable argument defaults. What are the gotchas and other issues of using this 'feature' on purpose, for example, to get tweakable defaults at runtime that ...
6
votes
1answer
126 views
Why does Fsharp Interactive allow mutable variables to be captured by closures?
Using an example from Chris Smith's Programming F# 3.0:
let invalidUseOfMutable() =
let mutable x = 0
let incrementX() = x <- x + 1
incrementX()
x;;
This fails as expected:
...
-4
votes
0answers
27 views
Relationship between cloning and ( mutation and immutation) in java [closed]
Please i request if anyone could explain with the help of an example the relationship between immutation and how cloning could affect it.
-2
votes
1answer
46 views
Java object not added to ArrayList
I have a problem. I am writing code for an ecosystem with fish and I am trying to add a new Fish object to an existing fish ArrayList . However, when I check the ArrayList it turns out to be empty? ...
1
vote
1answer
51 views
ocaml - array of record with mutable field
I'm new to OCaml and i'm trying to understand the concept of mutable record field.
I'd like to create an array of records and that record contains a boolean mutable field. So i did something like:
...
0
votes
3answers
56 views
Temporary mutability of a member variable
Is it possible to have a member variable only be considered mutable for a given function/code block?
e.g.
class Foo() {
int blah;
void bar() const {
blah = 5; // compiler error
}
void ...
0
votes
3answers
64 views
Mutable variable changed by a non-const member function
I am studying C++ and I read that: If a data member is declared mutable, then it is legal to assign a value to this data member from a const member function.
But the following code compiled without ...
2
votes
1answer
91 views
F# Function doesn't let me mutate mutable value
Probably another dumb F# beginner's question... But it's bugging me all the same
I can't seem to find any answers to this online... might be 'cause I search the wrong terms but eh
anyway my code ...
0
votes
1answer
47 views
making an immutable type mutable (consts and boost)
I am working on a feature for a codebase that I cannot change (save for what I'm writing) and there are some types here:
// Pointer to a mutable thingy
typedef boost::shared_ptr<Thingy> ...
1
vote
3answers
54 views
Are String Arrays mutable?
I wonder if String arrays in Java are mutable ? I know that Strings are immutable, but how about string Arrays ?
If I have a string array, and change the content, will a new string object be created ...
0
votes
1answer
35 views
Is mutableCopy an Object's State or Behaviour?
I personally adhere to the 'using dot notation in Objective-C with state, and messages with behaviour' principle. I don't want a conversation about this, but more whether the method, mutableCopy, is ...
0
votes
2answers
87 views
What is the immutable version to de/reference array?
How to de/reference the 3 array variables in this code instead of using mutable values?
The code below computes the Longest common subsequence (LCS) by diagonal traversing the m*n array.
The ...
0
votes
3answers
120 views
Are Strings *really* immutable in Java?
Everyone knows that Java's String object is immutable which essentially means that if you take String object a and concatenate it with another String object, say b, a totally new String object is ...
0
votes
1answer
42 views
Map with int key in objectiveC
I need to map integer values to objects in some sort of mutable array. What would be the best way to go about this. The only options I see are to use objectiveC++ ...
std::map<int, id> theMap; ...
7
votes
2answers
189 views
How to write this C# code in F#
I'm used to write code like this in C#:
SomeObj obj;
try{
// this may throw SomeException
obj = GetSomeObj();
}catch(SomeException){
// Log error...
obj = GetSomeDefaultValue();
}
...
0
votes
1answer
94 views
F# reading csv line by line asynchronously with mutable object
I've read a lot of posts here that help me a lot with my problem, but all my attempts did not bear fruit.
Hear is my code:
first function (Reading file for use line by line)
let readLines filePath ...
1
vote
1answer
86 views
How to create a mutable collection type like Array?
I'm trying to code a type to represent a pointer in GPU device, and it should act like an array, with indexed property for get and set. I get no problem if the element type is a primitive type, but ...
1
vote
1answer
55 views
scala append to a mutable LinkedList
Please check this
import scala.collection.mutable.LinkedList
var l = new LinkedList[String]
l append LinkedList("abc", "asd")
println(l)
// prints
// LinkedList()
but
import ...
6
votes
1answer
103 views
Is there an elegant way to foldLeft on a growing scala.collections.mutable.Queue?
I have a recursive function that I am trying to make @tailrec by having the inner, recursive part (countR3) add elements to a queue (agenda is a scala.collections.mutable.Queue). My idea is to then ...
4
votes
1answer
65 views
OCaml: Mutable fields of records with multiple files
I'm working with multiple files, and i have a problem with one mutable field.
In file1.ml, i declared:
type mytype = {
mutable numbers : int list;
}
So, in file2.ml, i have elements of type ...
3
votes
4answers
114 views
pre-defined constants for non-trivial data types
My Goal: Create a C# class for predefined errors that have both an ID and a Message.
Here was what I tried:
public class MyError
{
public static readonly MyError OK = new MyError(0, "OK");
...
-3
votes
1answer
57 views
Using loops in iOS [duplicate]
I have this code in my stopwatch application, but i have a problem with the loop, all of the values in my array are the same. I want to take the time observations to the array one by one. Take ...
0
votes
2answers
158 views
How do I accumulate results without using a mutable ArrayBuffer?
The code at the end of this question replaces the zeros with possible numbers ranging from 1 to 9 once and non-repeating. For a given sequence of numbers, List(0, 0, 1, 5, 0, 0, 8, 0, 0), it will ...
2
votes
1answer
45 views
Django mutable POST doesn't appear in cleaned_data
I have been searching around for this for two days now, but I couldn't find any realiable solution.
form:
class SMSSettingsForm(forms.ModelForm):
smsQuota = forms.IntegerField(label=_("Account ...
8
votes
1answer
273 views
Is an immutable Bitmap faster then a mutable one?
The Bitmap class has a method copy() with the signature below:
public Bitmap copy(Bitmap.Config config, boolean isMutable)
Is there a performance difference between a mutable and an immutable ...
4
votes
1answer
239 views
Indexing <String, Arraylist<Integer>> using B-Tree
I am about to index 10 million titles with their IDs(for now their line numbers), titles will be stored after tokenising them. The structure of the data has to be something like <String, ...
0
votes
1answer
43 views
Array update anomaly in Python [duplicate]
I wrote the following code in python. Within checkd,
when I update d[ii][jj], it seems as if the compiler takes its own liberties and makes all the following column entries to 1.
Code:
def ...
0
votes
1answer
20 views
Edit a variable without editing the origin
I need to copy a variable and make changes to it.
I've alredy seen this, but i want the oposite.
In this code i need the returned tuple to be two different lists, not the same.
def getIPRange(self):
...
0
votes
2answers
71 views
Multiple Instances of a Python Object are acting like the same instance
I have my class template here:
import sqlite3
class Patron(object):
#Let's set some basic attributes
attributes = { "patron_id" : None,
"name" : None,
"address" : None,
"phone" ...
-1
votes
2answers
83 views
Attempt to mutate immutable object error
My code crashes at this line:
[(NSMutableString *)string replaceCharactersInRange:range withString:@""];
with the error attempt to mutate immutable object.
How is this happening and how do i fix ...
2
votes
3answers
91 views
Why can't mutable variables be assigned together without being linked?
Consider the following:
>>> a = {}
>>> b = {}
>>> c = {}
>>> c['a'] = 'b'
>>> a
{}
>>> b
{}
>>> c
{'a': 'b'}
OK, this is all well and ...
17
votes
3answers
618 views
Always declare std::mutex as mutable in C++11?
After watching Herb Sutter's talk You Don't Know const and mutable, I wonder whether I should always define a mutex as mutable? If yes, I guess the same holds for any synchronized container (e.g., ...
0
votes
2answers
79 views
Add code to block dynamically
I'm pretty new to using blocks. I'm wondering if there is a way to add code dynamically to a block? A mutable block if you will.
7
votes
1answer
209 views
A bug of mutable.Set.foreach in scala?
I'm using scala 2.9.1, when I try this code:
import scala.collection.mutable
val a = mutable.Set(1,2,3,4,7,0,98,9,8)
a.foreach(x => { println(x); a.remove(x) })
the result was something like
0
...
1
vote
1answer
108 views
My recursive function (populates a tree structure) is adding to the root node during every loop/call
I have an algorithm to populate a tree like structure (class: Scan_instance_tree), but unfortunately, during each call, it is incorrectly adding to the root node's children, as well as to the new ...
4
votes
1answer
76 views
Preferred way of returning an immutable object
If I have a method that looks something like this:
- (NSDictionary *)removeDataInDictionary:(NSDictionary *)dictionary {
NSMutableDictionary *mutableDictionary = [dictionary mutableCopy];
...
3
votes
3answers
191 views
Racket mutable variables
I am new to racket and have run into an instance where I need a mutable numeric variable
Below is a function that works thru a string of bits (101011....) and if it encounters a 1 alters a numeric ...
1
vote
2answers
42 views
Modifying an instance of string
I have a string:
str="D\\projects\\myown\\java"
I assigned this string to two variables like:
str1=str
str2=str
After I did the below operation:
idgb1=str1.gsub!("\\","_")
I get str1 as ...
1
vote
3answers
191 views
How do I go about simulating the equivalent of pass-by-reference in Python?
What I essentially need is a mutable integer which can accomplish the equivalent of the below without having to resort to using single element lists.
Below is a contrived code sample which is ...
4
votes
2answers
149 views
freezing haskell STrefs
I would like to implement a Doubly Connected Edge List data structure for use in Haskell. This data structure is used to manage the topology of an arrangement of lines in a plane, and contains ...
1
vote
1answer
67 views
Behavior MutableCopy when object is Nil
(I cant find this on the Net)
All code is within one object. In the .h file I define a NSMutableArray. And I alloc it
in an init.
-(id)init{
self = [super init];
if(self) {
...
1
vote
3answers
84 views
Is it possible to access a reference of a struct from a List<T> to make changes?
I have a struct which I put in a List<T>, I want to edit some value in that struct at a specific position. Is this at all possible without making a copy of the struct, editing the copy, and ...
2
votes
2answers
64 views
Is there a convention for naming mutable and predicate functions in Javascript?
Is there a convention for naming mutable and predicate functions in Javascript?
For example, in Ruby, Lisp, etc., functions that mutate their contents, like gsub!, usually have an exclamation point ...
4
votes
3answers
182 views
Impossible to be const-correct when combining data and it's lock?
I've been looking at ways to combine a piece of data which will be accessed by multiple threads alongside the lock provisioned for thread-safety. I think I've got to a point where I don't think its ...
0
votes
0answers
84 views
Extracting elements from STArray (similar to unzipping)
I'm having a slight problem implementing a particle based fluid simulation in Haskell for a programming competition. I currently have an array of particles that gets modified at each simulation step. ...
1
vote
0answers
106 views
Signature for Generic Mutable Vector function
I'm trying to write a generic vector function that takes an immutable vector and returns an immutable vector, but operates on a (temporary) mutable vector. A simple example that demonstrates my ...
2
votes
3answers
140 views
Merge 2 dictionaries in Python
I have 2 dictionaries.
dict1={('SAN RAMON', 'CA'): 1, ('UPLAND', 'CA'): 4, ('POUGHKEESIE', 'NY'): 3, ('CATTANOOGA', 'TN'): 1}
dict2={('UPLAND', 'CA'): 5223, ('PORT WASHING', 'WI'): 11174, ('PORT ...




