What's the best name for a non-mutating "add" method on an immutable collection? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T05:13:16Zhttp://stackoverflow.com/feeds/question/521893http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection38What's the best name for a non-mutating "add" method on an immutable collection?Jon Skeet2009-02-06T19:49:29Z2009-10-08T04:58:29Z
<p>Sorry for the waffly title - if I could come up with a concise title, I wouldn't have to ask the question.</p>
<p>Suppose I have an immutable list type. It has an operation <code>Foo(x)</code> which returns a new immutable list with the specified argument as an extra element at the end. So to build up a list of strings with values "Hello", "immutable", "world" you could write:</p>
<pre><code>var empty = new ImmutableList<string>();
var list1 = empty.Foo("Hello");
var list2 = list1.Foo("immutable");
var list3 = list2.Foo("word");
</code></pre>
<p>(This is C# code, and I'm most interested in a C# suggestion if you feel the language is important. It's not fundamentally a language question, but the idioms of the language may be important.)</p>
<p>The important thing is that the existing lists are <em>not</em> altered by <code>Foo</code> - so <code>empty.Count</code> would still return 0.</p>
<p>Another (more idiomatic) way of getting to the end result would be:</p>
<pre><code>var list = new ImmutableList<string>().Foo("Hello");
.Foo("immutable");
.Foo("word");
</code></pre>
<p>My question is: <strong>what's the best name for Foo?</strong></p>
<p><strong>EDIT 3</strong>: As I reveal later on, the name of the type might not actually be <code>ImmutableList<T></code>, which makes the position clear. Imagine instead that it's <code>TestSuite</code> and that it's immutable because the whole of the framework it's a part of is immutable...</p>
<p>(End of edit 3)</p>
<p>Options I've come up with so far:</p>
<ul>
<li><code>Add</code>: common in .NET, but implies mutation of the original list</li>
<li><code>Cons</code>: I believe this is the normal name in functional languages, but meaningless to those without experience in such languages</li>
<li><code>Plus</code>: my favourite so far, it doesn't imply mutation <em>to me</em>. Apparently this is also <a href="http://en.wikibooks.org/wiki/Haskell/MonadPlus" rel="nofollow">used in Haskell</a> but with slightly different expectations (a Haskell programmer might expect it to add two lists together rather than adding a single value to the other list).</li>
<li><code>With</code>: consistent with some other immutable conventions, but doesn't have quite the same "additionness" to it IMO.</li>
<li><code>And</code>: not very descriptive.</li>
<li>Operator overload for + : I really don't like this much; I generally think operators should only be applied to lower level types. I'm willing to be persuaded though!</li>
</ul>
<p>The criteria I'm using for choosing are:</p>
<ul>
<li>Gives the correct impression of the result of the method call (i.e. that it's the original list with an extra element)</li>
<li>Makes it as clear as possible that it doesn't mutate the existing list</li>
<li>Sounds reasonable when chained together as in the second example above</li>
</ul>
<p>Please ask for more details if I'm not making myself clear enough...</p>
<p><strong>EDIT 1:</strong> Here's my reasoning for preferring <code>Plus</code> to <code>Add</code>. Consider these two lines of code:</p>
<pre><code>list.Add(foo);
list.Plus(foo);
</code></pre>
<p>In my view (and this <em>is</em> a personal thing) the latter is clearly buggy - it's like writing "x + 5;" as a statement on its own. The first line looks like it's okay, until you remember that it's immutable. In fact, the way that the plus operator on its own doesn't mutate its operands is another reason why <code>Plus</code> is my favourite. Without the slight ickiness of operator overloading, it still gives the same connotations, which include (for me) not mutating the operands (or method target in this case).</p>
<p><strong>EDIT 2:</strong> Reasons for not liking Add.</p>
<p>Various answers are effectively: "Go with Add. That's what <code>DateTime</code> does, and <code>String</code> has <code>Replace</code> methods etc which don't make the immutability obvious." I agree - there's precedence here. However, I've seen plenty of people call <code>DateTime.Add</code> or <code>String.Replace</code> and <em>expect mutation</em>. There are loads of newsgroup questions (and probably SO ones if I dig around) which are answered by "You're ignoring the return value of <code>String.Replace</code>; strings are immutable, a new string gets returned."</p>
<p>Now, I should reveal a subtlety to the question - the type might <em>not</em> actually be an immutable list, but a different immutable type. In particular, I'm working on a benchmarking framework where you add tests to a suite, and that creates a new suite. It might be obvious that:</p>
<pre><code>var list = new ImmutableList<string>();
list.Add("foo");
</code></pre>
<p>isn't going to accomplish anything, but it becomes a <em>lot</em> murkier when you change it to:</p>
<pre><code>var suite = new TestSuite<string, int>();
suite.Add(x => x.Length);
</code></pre>
<p>That looks like it should be okay. Whereas this, to me, makes the mistake clearer:</p>
<pre><code>var suite = new TestSuite<string, int>();
suite.Plus(x => x.Length);
</code></pre>
<p>That's just begging to be:</p>
<pre><code>var suite = new TestSuite<string, int>().Plus(x => x.Length);
</code></pre>
<p>Ideally, I would like my users not to have to be told that the test suite is immutable. I want them to fall into the pit of success. This <em>may</em> not be possible, but I'd like to try.</p>
<p>I apologise for over-simplifying the original question by talking only about an immutable list type. Not all collections are quite as self-descriptive as <code>ImmutableList<T></code> :)</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521911#52191112Answer by JaredPar for What's the best name for a non-mutating "add" method on an immutable collection?JaredPar2009-02-06T19:54:03Z2009-02-06T21:08:37Z<p>I ended up going with Add for all of my Immutable Collections in <a href="http://code.msdn.microsoft.com/BclExtras" rel="nofollow">BclExtras</a>. The reason being is that it's an easy predictable name. I'm not worried so much about people confusing Add with a mutating add since the name of the type is prefixed with Immutable.</p>
<p>For awhile I considered Cons and other functional style names. Eventually I discounted them because they're not nearly as well known. Sure functional programmers will understand but they're not the majority of users.</p>
<p>Other Names: you mentioned:</p>
<ul>
<li>Plus: I'm wishy/washing on this one. For me this doesn't distinguish it as being a non-mutating operation anymore than Add does</li>
<li>With: Will cause issues with VB (pun intended)</li>
<li>Operator overloading: Discoverability would be an issue</li>
</ul>
<p>Options I considered:</p>
<ul>
<li>Concat: String's are Immutable and use this. Unfortunately it's only really good for adding to the end</li>
<li>CopyAdd: Copy what? The source, the list? </li>
<li>AddToNewList: Maybe a good one for List. But what about a Collection, Stack, Queue, etc ...</li>
</ul>
<p>Unfortunately there doesn't really seem to be a word that is </p>
<ol>
<li>Definitely an immutable operation</li>
<li>Understandable to the majority of users</li>
<li>Representable in less than 4 words </li>
</ol>
<p>It gets even more odd when you consider collections other than List. Take for instance Stack. Even first year programmers can tell you that Stacks have a Push/Pop pair of methods. If you create an ImmutableStack and give it a completely different name, lets call it Foo/Fop, you've just added more work for them to use your collection. </p>
<p><strong>Edit:</strong> Response to Plus Edit</p>
<p>I see where you're going with Plus. I think a stronger case would actually be Minus for remove. If I saw the following I would certainly wonder what in the world the programmer was thinking</p>
<pre><code>list.Minus(obj);
</code></pre>
<p>The biggest problem I have with Plus/Minus or a new pairing is it feels like overkill. The collection itself already has a distinguishing name, the Immutable prefix. Why go further by adding vocabulary whose intent is to add the same distinction as the Immutable prefix already did.</p>
<p>I can see the call site argument. It makes it clearer from the standpoint of a single expression. But in the context of the entire function it seems unnecessary.</p>
<p><strong>Edit 2</strong></p>
<p>Agree that people have definitely been confused by String.Concat and DateTime.Add. I've seen several very bright programmers hit this problem. </p>
<p>However I think ImmutableList is a different argument. There is nothing about String or DateTime that establishes it as Immutable to a programmer. You must simply <em>know</em> that it's immutable via some other source. So the confusion is not unexpected. </p>
<p>ImmutableList does not have that problem because the name defines it's behavior. You could argue that people don't know what Immutable is and I think that's also valid. I certainly didn't know it till about year 2 in college. But you have the same issue with whatever name you choose instead of Add. </p>
<p><strong>Edit 3:</strong> What about types like TestSuite which are immutable but do not contain the word?</p>
<p>I think this drives home the idea that you shouldn't be inventing new method names. Namely because there is clearly a drive to make types immutable in order to facilitate parallel operations. If you focus on changing the name of methods for collections, the next step will be the mutating method names on every type you use that is immutable. </p>
<p>I think it would be a more valuable effort to instead focus on making types identifiable as Immutable. That way you can solve the problem without rethinking every mutating method pattern out there. </p>
<p>Now how can you identify TestSuite as Immutable? In todays environment I think there are a few ways</p>
<ol>
<li>Prefix with Immutable: ImmutableTestSuite</li>
<li>Add an Attribute which describes the level of Immutablitiy. This is certainly less discoverable</li>
<li>Not much else.</li>
</ol>
<p>My guess/hope is development tools will start helping this problem by making it easy to identify immutable types simply by sight (different color, stronger font, etc ...). But I think that's the answer though over changing all of the method names. </p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521913#5219137Answer by mmyers for What's the best name for a non-mutating "add" method on an immutable collection?mmyers2009-02-06T19:55:03Z2009-02-06T19:55:03Z<p>To be as clear as possible, you might want to go with the wordier <code>CopyAndAdd</code>, or something similar.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521915#5219150Answer by it depends for What's the best name for a non-mutating "add" method on an immutable collection?it depends2009-02-06T19:55:06Z2009-02-06T22:14:19Z<p><strong>I Like And()</strong>. I think it has the least potential for ambiguity. The only clash I can think of is with a logical And, I don't see that being a problem with a C# developer and even for VB I think the context makes it unlikely to cause a problem and any issue would be picked up quickly at compile time. It also works well in in English "Do something to These And That" or "Put These And That in the box".</p>
<p>I think <strong>.With() is OK</strong>. My concern is it may look a little like a linq Where<> method especially if there's a lambda as an argument. The English in my head is also less clear especially "Do something to These With That".</p>
<p><strong>I don't like .Plus()</strong>. I can't get past it as a synonym for Add: plus = plus sign = + = add.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521916#5219162Answer by Tundey for What's the best name for a non-mutating "add" method on an immutable collection?Tundey2009-02-06T19:55:32Z2009-02-06T19:55:32Z<p>DateTime in C# uses Add. So why not use the same name? As long the users of your class understand the class is immutable. </p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521924#5219243Answer by Chris Shaffer for What's the best name for a non-mutating "add" method on an immutable collection?Chris Shaffer2009-02-06T19:56:44Z2009-02-06T19:56:44Z<p>A few random thoughts:</p>
<ul>
<li>ImmutableAdd()</li>
<li>Append()</li>
<li>ImmutableList<T>(ImmutableList<T> originalList, T newItem) Constructor</li>
</ul>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521929#5219294Answer by David Morton for What's the best name for a non-mutating "add" method on an immutable collection?David Morton2009-02-06T19:57:15Z2009-02-06T19:57:15Z<p>I think "Add" or "Plus" sounds fine. The name of the list itself should be enough to convey the list's immutability. </p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521942#5219420Answer by Paul Tomblin for What's the best name for a non-mutating "add" method on an immutable collection?Paul Tomblin2009-02-06T20:00:40Z2009-02-06T20:00:40Z<p>"Replace"? It doesn't add to the list, it replaces the list with a new one.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521945#5219454Answer by DrJokepu for What's the best name for a non-mutating "add" method on an immutable collection?DrJokepu2009-02-06T20:01:37Z2009-02-06T20:54:28Z<p>I would call it <strong>Extend()</strong> or maybe <strong>ExtendWith()</strong> if you feel like really verbose.</p>
<p>Extends means adding something to something else without changing it. I think this is very relevant terminology in C# since this is similar to the concept of extension methods - they "add" a new method to a class without "touching" the class itself.</p>
<p>Otherwise, if you really want to emphasize that you don't modify the original object at all, using some prefix like Get- looks like unavoidable to me.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521948#5219480Answer by Franci Penov for What's the best name for a non-mutating "add" method on an immutable collection?Franci Penov2009-02-06T20:02:26Z2009-02-06T20:02:26Z<p>I would go for the simple Add(). An alternative would be Append(), if you want to convey that this is really a collection operation.</p>
<p>In addition to the explicit method, I'd still suggest implementing the obverloaded + operatr. It's a well known operation. Everybody knows String is immutable, yet everybody uses the '+' to build new instances of it.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521949#5219490Answer by ChrisW for What's the best name for a non-mutating "add" method on an immutable collection?ChrisW2009-02-06T20:02:37Z2009-02-06T20:02:37Z<p><code>Append</code> - because, note that names of the <code>System.String</code> methods suggest that they mutate the instance, but they don't.</p>
<p>Or I quite like <code>AfterAppending</code>:</p>
<pre><code>void test()
{
Bar bar = new Bar();
List list = bar.AfterAppending("foo");
}
</code></pre>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521951#5219514Answer by gnovice for What's the best name for a non-mutating "add" method on an immutable collection?gnovice2009-02-06T20:03:12Z2009-02-07T04:13:16Z<p>I like mmyers suggestion of <strong>CopyAndAdd</strong>. In keeping with a "mutation" theme, maybe you could go with <strong>Bud</strong> (asexual reproduction), <strong>Grow</strong>, <strong>Replicate</strong>, or <strong>Evolve</strong>? =)</p>
<p>EDIT: To continue with my genetic theme, how about <strong>Procreate</strong>, implying that a new object is made which is based on the previous one, but with something new added.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521962#5219620Answer by nsayer for What's the best name for a non-mutating "add" method on an immutable collection?nsayer2009-02-06T20:05:53Z2009-02-06T20:05:53Z<p>How about "Augment"?</p>
<p>It's a different word from Add, but it's a close synonym.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521970#5219703Answer by chaos for What's the best name for a non-mutating "add" method on an immutable collection?chaos2009-02-06T20:07:11Z2009-02-06T20:07:11Z<p>I think the key thing you're trying to get at that's hard to express is the nonpermutation, so maybe something with a generative word in it, something like CopyWith() or InstancePlus().</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521992#52199223Answer by tvanfosson for What's the best name for a non-mutating "add" method on an immutable collection?tvanfosson2009-02-06T20:12:41Z2009-02-06T20:12:41Z<p>Actually I like <code>And</code>, especially in the idiomatic way. I'd especially like it if you had a static readonly property for the Empty list, and perhaps make the constructor private so you always have to build from the empty list.</p>
<pre><code>var list = ImmutableList<string>.Empty.And("Hello")
.And("Immutable")
.And("Word");
</code></pre>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522057#5220570Answer by shsteimer for What's the best name for a non-mutating "add" method on an immutable collection?shsteimer2009-02-06T20:34:50Z2009-02-06T20:34:50Z<p>Since the type name is ImmutableList thus specifying that it is infact immutable, I think that .Add() is fine. However, If your really insistant on something else, I might go with something like .AddEx() where Ex means extended and implies that the user should determine what that Ex is (by reading docs) before using. I also like the suggestion of Plus() and GetCopyWith()</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522063#5220632Answer by Adam Bellaire for What's the best name for a non-mutating "add" method on an immutable collection?Adam Bellaire2009-02-06T20:36:08Z2009-02-06T20:36:08Z<p>I don't think the English language will let you imply immutability in an unmistakable way while using a verb that means the same thing as "Add". "Plus" almost does it, but people can still make the mistake. </p>
<p>The only way you're going to prevent your users from mistaking the object for something mutable is by making it explicit, either through the name of the object itself or through the name of the method (as with the verbose options like "GetCopyWith" or "CopyAndAdd").</p>
<p>So just go with your favourite, "Plus."</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522144#52214412Answer by spoulson for What's the best name for a non-mutating "add" method on an immutable collection?spoulson2009-02-06T20:57:56Z2009-02-06T20:57:56Z<p>Whenever I'm in a jam with nomenclature, I hit up the interwebs.</p>
<p><a href="http://www.thesaurus.com" rel="nofollow">thesaurus.com</a> returns this for "add":</p>
<blockquote>
<p><strong>Definition:</strong> adjoin, increase; make
further comment</p>
<p><strong>Synonyms:</strong> affix,
annex, ante, append, augment, beef
up, boost, build up, charge up,
continue, cue in, figure in, flesh
out, heat up, hike, hike up, hitch on,
hook on, hook up with, include, jack
up, jazz up, join together, pad,
parlay, piggyback, plug into, pour it
on, reply, run up, say further, slap
on, snowball, soup up, speed up,
spike, step up, supplement, sweeten,
tack on, tag</p>
</blockquote>
<p>I like the sound of <code>Adjoin</code>, or more simply <code>Join</code>. That is what you're doing, right? The method could also apply to joining other <code>ImmutableList<></code>'s.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522166#52216612Answer by LarryF for What's the best name for a non-mutating "add" method on an immutable collection?LarryF2009-02-06T21:02:38Z2009-02-06T21:02:38Z<p>Personally, I like .With(). If I was using the object, after reading the documentation or the code comments, it would be clear what it does, and it reads ok in the source code.</p>
<pre><code>object.With("My new item as well");
</code></pre>
<p>Or, you add "Along" with it.. :)</p>
<pre><code>object.AlongWith("this new item");
</code></pre>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522168#52216830Answer by Ken for What's the best name for a non-mutating "add" method on an immutable collection?Ken2009-02-06T21:03:37Z2009-02-06T21:03:37Z<p>I'd go with Cons, for one simple reason: it means exactly what you want it to.</p>
<ol>
<li><p>I'm a huge fan of saying exactly what I mean, especially in source code. A newbie will have to look up the definition of Cons only once, but then read and use that a thousand times. I find that, in the long term, it's nicer to work with systems that make the common case easier, even if the up-front cost is a little bit higher.</p></li>
<li><p>The fact that it would be "meaningless" to people with no FP experience is actually a big advantage. As you pointed out, all of the other words you found already have some meaning, and that meaning is either slightly different or ambiguous. A new concept <em>should</em> have a new word (or in this case, an old one). I'd rather somebody have to look up the definition of Cons, than to assume incorrectly he knows what Add does.</p></li>
<li><p>Other operations borrowed from functional languages often keep their original names, with no apparent catastrophes. I haven't seen any push to come up with synonyms for "map" and "reduce" that sound more familiar to non-FPers, nor do I see any benefit from doing so.</p></li>
</ol>
<p>(Full disclosure: I'm a Lisp programmer, so I already know what Cons means.)</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522188#5221881Answer by Chris Marisic for What's the best name for a non-mutating "add" method on an immutable collection?Chris Marisic2009-02-06T21:09:57Z2009-02-06T21:09:57Z<p>.Trail implies a very strong understanding of the list has not changed, this object is trailing behind the list, it has not been added to it.</p>
<pre><code>var list = new ImmutableList<string>().Trail("Hello");
.Trail("immutable");
.Trail("word");
</code></pre>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522194#5221941Answer by Johannes Schaub - litb for What's the best name for a non-mutating "add" method on an immutable collection?Johannes Schaub - litb2009-02-06T21:11:29Z2009-02-06T22:33:36Z<p>Maybe there are some words which remember me more of making a copy and add stuff to that instead of mutating the instance (like "Concatenate"). But i think having some symmetry for those words for other actions would be good to have too. I don't know of a similar word for "Remove" that i think of the same kind like "Concatenate". "Plus" sounds little strange to me. I wouldn't expect it being used in a non-numerical context. But that could aswell come from my non-english background.</p>
<p>Maybe i would use this scheme</p>
<pre><code>AddToCopy
RemoveFromCopy
InsertIntoCopy
</code></pre>
<p>These have their own problems though, when i think about it. One could think they remove something or add something to an argument given. Not sure about it at all. Those words do not play nice in chaining either, i think. Too wordy to type. </p>
<p>Maybe i would just use plain "Add" and friends too. I like how it is used in math</p>
<pre><code>Add 1 to 2 and you get 3
</code></pre>
<p>Well, certainly, a 2 remains a 2 and you get a new number. This is about two numbers and not about a list and an element, but i think it has some analogy. In my opinion, <code>add</code> does not necessarily mean you mutate something. I certainly see your point that having a lonely statement containing just an <code>add</code> and not using the returned new object does not look buggy. But I've now also thought some time about that idea of using another name than "add" but i just can't come up with another name, without making me think "hmm, i would need to look at the documentation to know what it is about" because its name differs from what I would expect to be called "add". Just some weird thought about this from litb, not sure it makes sense at all :)</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522204#5222040Answer by mP for What's the best name for a non-mutating "add" method on an immutable collection?mP2009-02-06T21:14:48Z2009-02-06T21:14:48Z<p>"add()" </p>
<p>The fact it returns a new list is immaterial thats an implementation detail revealed by the signature. The main action that the method accomplishes is "adding" a new element to a list. How or what it deos or returns should not be part of the method name. If a method was synchronized would that affect the method name -"synchronizedAdd()" ??? - of course not.</p>
<p>Classes like String which follow the would-be-mutator pattern still have really simple method names - none are compounded words.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522226#5222266Answer by MojoFilter for What's the best name for a non-mutating "add" method on an immutable collection?MojoFilter2009-02-06T21:22:32Z2009-02-06T21:22:32Z<p>In situations like that, I usually go with <code>Concat</code>. That usually implies to me that a new object is being created.</p>
<pre><code>var p = listA.Concat(listB);
var k = listA.Concat(item);
</code></pre>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522243#5222432Answer by Bill the Lizard for What's the best name for a non-mutating "add" method on an immutable collection?Bill the Lizard2009-02-06T21:27:51Z2009-02-06T21:35:24Z<p>I think this may be one of those rare situations where it's acceptable to overload the <code>+</code> operator. In math terminology, we know that <code>+</code> doesn't append something to the end of something else. It always combines two values together and returns a new resulting value.</p>
<p>For example, it's intuitively obvious that when you say</p>
<pre><code>x = 2 + 2;
</code></pre>
<p>the resulting value of x is 4, not 22.</p>
<p>Similarly,</p>
<pre><code>var empty = new ImmutableList<string>();
var list1 = empty + "Hello";
var list2 = list1 + "immutable";
var list3 = list2 + "word";
</code></pre>
<p>should make clear what each variable is going to hold. It should be clear that <code>list2</code> is not <em>changed</em> in the last line, but instead that <code>list3</code> is assigned the result of appending "word" to <code>list2</code>.</p>
<p>Otherwise, I would just name the function Plus().</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522259#5222591Answer by Paul Brinkley for What's the best name for a non-mutating "add" method on an immutable collection?Paul Brinkley2009-02-06T21:30:17Z2009-02-06T21:30:17Z<p>First, an interesting starting point:
<a href="http://en.wikipedia.org/wiki/Naming_conventions_(programming)" rel="nofollow">http://en.wikipedia.org/wiki/Naming_conventions_(programming)</a> ...In particular, check the "See Also" links at the bottom.</p>
<p>I'm in favor of either Plus or And, effectively equally.</p>
<p>Plus and And are both math-based in etymology. As such, both connote mathematical operation; both yield an expression which reads naturally as expressions which may resolve into a value, which fits with the method having a return value. <code>And</code> bears additional logic connotation, but both words apply intuitively to lists. <code>Add</code> connotes action performed on an object, which conflicts with the method's immutable semantics.</p>
<p>Both are short, which is especially important given the primitiveness of the operation. Simple, frequently-performed operations deserve shorter names.</p>
<p>Expressing immutable semantics is something I prefer to do via context. That is, I'd rather simply imply that this entire block of code has a functional feel; assume everything is immutable. That might just be me, however. I prefer immutability to be the rule; if it's done, it's done a lot in the same place; <em>mutability</em> is the exception.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522272#5222720Answer by Strilanc for What's the best name for a non-mutating "add" method on an immutable collection?Strilanc2009-02-06T21:34:15Z2009-02-06T21:46:31Z<p>Added(), Appended()</p>
<p>I like to use the past tense for operations on immutable objects. It conveys the idea that you aren't changing the original object, and it's easy to recognize when you see it.</p>
<p>Also, because mutating method names are often present-tense verbs, it applies to most of the immutable-method-name-needed cases you run into. For example an immutable stack has the methods "pushed" and "popped".</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522330#5223300Answer by Webjedi for What's the best name for a non-mutating "add" method on an immutable collection?Webjedi2009-02-06T21:48:32Z2009-02-06T21:48:32Z<p>How about Chain() or Attach()?</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522447#5224470Answer by Éric Malenfant for What's the best name for a non-mutating "add" method on an immutable collection?Éric Malenfant2009-02-06T22:18:45Z2009-02-06T22:18:45Z<p>2 suggestions:</p>
<p>A "free" function:</p>
<pre><code>Foo f = new Foo(whatever);
Foo fPlusSomething = Foo.Concat(f, something);
</code></pre>
<p>A constructor overload (which is, in a way, a variation on the "free function" theme):</p>
<pre><code>Foo f = new Foo(whatever);
Foo fPlusSomething = new Foo(f, something);
</code></pre>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522473#5224732Answer by jms for What's the best name for a non-mutating "add" method on an immutable collection?jms2009-02-06T22:24:15Z2009-02-06T22:52:04Z<p>How about <strong>mate</strong>, <strong>mateWith</strong>, or <strong>coitus</strong>, for those who abide. In terms of reproducing mammals are generally considered immutable.</p>
<p>Going to throw <strong>Union</strong> out there too. Borrowed from SQL.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522549#5225494Answer by ykaganovich for What's the best name for a non-mutating "add" method on an immutable collection?ykaganovich2009-02-06T22:42:17Z2009-02-06T22:42:17Z<p><code>Join</code> seems appropriate.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522564#5225642Answer by ykaganovich for What's the best name for a non-mutating "add" method on an immutable collection?ykaganovich2009-02-06T22:48:28Z2009-02-06T22:48:28Z<p>This is probably a stretch, but in Ruby there is a commonly used notation for the distinction: <code>add</code> doesn't mutate; <code>add!</code> mutates. If this is an pervasive problem in your project, you could do that too (not necessarily with non-alphabetic characters, but consistently using a notation to indicate mutating/non-mutating methods).</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522689#5226890Answer by GordonG for What's the best name for a non-mutating "add" method on an immutable collection?GordonG2009-02-06T23:44:49Z2009-02-06T23:44:49Z<p>So I guess a method named "ImmutableAdd()" is entirely too simplistic?</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/522758#5227582Answer by Wedge for What's the best name for a non-mutating "add" method on an immutable collection?Wedge2009-02-07T00:18:56Z2009-02-07T00:43:10Z<p>I prefer Plus (and Minus). They are easily understandable and map directly to operations involving well known immutable types (the numbers). 2+2 doesn't change the value of 2, it returns a new, equally immutable, value.</p>
<p>Some other possibilities:</p>
<p>Splice()</p>
<p>Graft()</p>
<p>Accrete()</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/523888#5238880Answer by Sam Hasler for What's the best name for a non-mutating "add" method on an immutable collection?Sam Hasler2009-02-07T14:58:06Z2009-02-07T14:58:06Z<p>Looking at <a href="http://thesaurus.reference.com/browse/add" rel="nofollow">http://thesaurus.reference.com/browse/add</a> and <a href="http://thesaurus.reference.com/browse/plus" rel="nofollow">http://thesaurus.reference.com/browse/plus</a> I found <strong>gain</strong> and <strong>affix</strong> but I'm not sure how much they imply non-mutation.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/525825#5258250Answer by GordonG for What's the best name for a non-mutating "add" method on an immutable collection?GordonG2009-02-08T14:38:03Z2009-02-08T14:51:44Z<p>How about "Stick" or "StickTo", it sticks an element on the end.</p>
<p>Or "Attach" or "AttachTo".</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/525885#5258850Answer by Skip Head for What's the best name for a non-mutating "add" method on an immutable collection?Skip Head2009-02-08T15:16:11Z2009-02-08T15:16:11Z<p>I would use a constructor.</p>
<pre><code>Foo f1 = new Foo("one");
Foo f2 = new Foo(f1, "two");
Foo f3 = new Foo(f2, "three");
</code></pre>
<p>f1 contains "one".
f2 contains "one", "two".
f3 contains "one", "two", "three".</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/598214#5982140Answer by Adrian for What's the best name for a non-mutating "add" method on an immutable collection?Adrian2009-02-28T16:01:40Z2009-02-28T16:01:40Z<p><code>list.CopyWith(element)</code> </p>
<p>As does Smalltalk :)</p>
<p>And also <code>list.copyWithout(element)</code> that removes all occurrences of an element, which is most useful when used as <code>list.copyWithout(null)</code> to remove unset elements.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/618385#6183850Answer by Benjol for What's the best name for a non-mutating "add" method on an immutable collection?Benjol2009-03-06T10:36:13Z2009-03-06T10:36:13Z<p>I'm arriving a bit late here, how about NewWith?</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/634924#6349240Answer by littlegeek for What's the best name for a non-mutating "add" method on an immutable collection?littlegeek2009-03-11T15:00:57Z2009-03-11T15:07:20Z<p>I would call it ToInclude</p>
<pre><code>var empty = new ImmutableList<string>();
var list1 = empty.ToInclude("Hello");
var list2 = list1.ToInclude("immutable");
var list3 = list2.ToInclude("word");
</code></pre>
<p>idiomatically (?)</p>
<pre><code>var list = new ImmutableList<string>().ToInclude("Hello");
.ToInclude("immutable");
.ToInclude("word");
</code></pre>
<p>Works for the case you mentioned too.</p>
<pre><code>var list = new ImmutableList<string>();list.ToInclude("foo");
var suite = new TestSuite<string, int>();suite.ToInclude(x => x.Length);
</code></pre>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/716677#7166771Answer by Josh Smeaton for What's the best name for a non-mutating "add" method on an immutable collection?Josh Smeaton2009-04-04T07:01:35Z2009-04-04T07:01:35Z<p>Any name that implies that an object of the same type will be returned should be fine to use. Plus is a good name for this, as if you plus two objects you expect the result to be returned.</p>
<p>Plus just doesn't sound like the correct name to use in this instance though, since you're 'Plus'ing a test into a test suite.</p>
<p>GetWith() sounds like an option to me. Or ever GetTypeWith() where type is obviously the type your using. So for example:</p>
<pre><code>var list = new ImmutableList<String>();
var list2 = list.GetWith("First");
var list3 = list2.GetWith("Second");
// OR
var list2 = list.GetListWith("First");
</code></pre>
<p>The Get implies you're getting the list that's already contained, and the With implies you want another object along with it. CopyWith() would also meet this criteria. </p>
<p>The immediate problem I see with GetWith is that it's not easily guessable. A developer wants to add a suite, not get the current suite. I'd immediately type .Add and hope intellisence showed something very close to what I'd expect. </p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/753794#7537940Answer by Erich Mirabal for What's the best name for a non-mutating "add" method on an immutable collection?Erich Mirabal2009-04-15T21:24:40Z2009-04-16T01:53:20Z<p>Very late to the game, but how about <code>Freeze</code>. There is precedence in WPF for using <code>Freeze</code> and <code>IsFrozen</code> to test if an object is mutable. Granted, this skews the meaning a little in that typically <code>Freeze()</code> is meant as a way to make the current object immutable, but if it has a parameter to it, you could see that you are getting something that is immutable.</p>
<pre><code>var list = new ImmutableList<string>().Freeze("Hello")
.Freeze("Fridgid")
.Freeze("World");
</code></pre>
<p>Basically:</p>
<ol>
<li>It is one word</li>
<li>The connotation revolves around immutability.</li>
<li>Precendence in WPF for "similar" syntax.</li>
</ol>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/754518#7545180Answer by Erich Mirabal for What's the best name for a non-mutating "add" method on an immutable collection?Erich Mirabal2009-04-16T02:22:40Z2009-04-16T02:22:40Z<p>How about an Extension method? You could call it <code>Join</code> in this case. Being an extension method, users should know that it is a static method and might therefore give them a little pause and encourage them to look at the return value. At the same time, you have the usability of an "instance" method.</p>
<pre><code>public static ImmutableList<T> Join(this ImmutableList<T> body, T tail)
{
// add robust error checking in case either is null...
return new ImmutableList<T>(body, tail);
}
</code></pre>
<p>and then later on...</p>
<pre><code>var list = new ImmutableList<string>().Join("Hello")
.Join("Extensible")
.Join("World");
</code></pre>
<p>I don't quite know the accepted behavior on posting multiple answers, but this is an interesting question since I think that nomenclature is a critical step in design and my brain keeps pondering on this one.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/761678#7616781Answer by Joan Venge for What's the best name for a non-mutating "add" method on an immutable collection?Joan Venge2009-04-17T18:39:15Z2009-04-17T18:39:15Z<p>I would go for Add, because I can see the benefit of a better name, but the problem would be to find different names for every other immutable operation which might make the class quite unfamiliar if that makes sense.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/984094#9840941Answer by LBushkin for What's the best name for a non-mutating "add" method on an immutable collection?LBushkin2009-06-11T22:25:29Z2009-06-11T22:25:29Z<p>I think that <code>Plus()</code> and <code>Minus()</code> or, alternatively, <code>Including()</code>, <code>Excluding()</code> are reasonable at <em>implying</em> immutable behavior. </p>
<p>However, no naming choice will ever make it perfectly clear to everyone, so I personally believe that a good xml doc comment would go a very long way here. VS throws these right in your face when you write code in the IDE - they're hard to ignore.</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/1048932#10489320Answer by orj for What's the best name for a non-mutating "add" method on an immutable collection?orj2009-06-26T12:43:40Z2009-06-26T12:43:40Z<p>C#-ish pseudo code follows:</p>
<pre><code>interface Foo
{
// Constructors
Foo();
Foo(params Foo[] foos);
// Instance method
Foo Join(params Foo[] foos);
// Class method
static Foo Join(params Foo[] foos);
}
</code></pre>
<p>So you could call things like this:</p>
<pre><code>var f0 = new Foo();
var f1 = new Foo(new Foo(), new Foo(), new Foo());
var f2 = Foo.Join(new Foo(), new Foo(), new Foo());
var f3 = f0.Join(new Foo(), new Foo(), new Foo());
var f4 = new Foo(new Foo(new Foo()), new Foo(), new Foo(new Foo()));
</code></pre>
<p>Etc....</p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/1221901#12219010Answer by jeyoung for What's the best name for a non-mutating "add" method on an immutable collection?jeyoung2009-08-03T11:49:18Z2009-08-03T11:49:18Z<p>How about creating a wrapper class with an <code>Augment</code> (or <code>AugmentWith</code>) method? </p>
http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/1535716#15357160Answer by quodlibetor for What's the best name for a non-mutating "add" method on an immutable collection?quodlibetor2009-10-08T04:58:29Z2009-10-08T04:58:29Z<p>Since this question is now basically a thesaurus: How about <code>.Bring()</code>. As in, give me this list and bring this element with it?</p>
<pre><code>Foo = List.Bring('short');
.Bring('longer');
.Bring('woah');
</code></pre>
<p>It doesn't roll off the tongue, but it <em>means</em> it, to me.</p>
<p>Actually, <code>AndBring()</code> might be even better.</p>