Tagged Questions
The immutable-class tag has no wiki summary.
9
votes
2answers
514 views
Best way to define an immutable class in Objective C
I am a newbie in Objective C and I was wondering what is
the best way to define an immutable class in Objective-C (like NSString for example).
I want to know what are the basic rules one has to ...
6
votes
8answers
1k views
Mutable or immutable class?
I had read in some design book that immutable class improves scalability and its good practice to write immutable class wherever possible. But I think so immutable class increase object proliferation. ...
5
votes
1answer
139 views
Optionally adding items to a Scala Map
I am looking for an idiomatic solution to this problem.
I am building a val Scala (immutable) Map and would like to optionally add one or more items:
val aMap =
Map(key1 -> value1,
key2 ...
2
votes
1answer
61 views
Why isn't immutability by default within the Domain (Business Logic) more common? [closed]
I have been working with functional programming a good bit lately, and have found immutability to offer a different perspective in regard to solving problems. I am considering using immutable classes ...
1
vote
3answers
281 views
c# Immutable classes in business applications
Why and when do we need immutable (i.e. readonly) classes (I am not talking about string. I am talking about Business Objects) in business or database applications?
Can anyone give me a real-world ...