|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
4 | added 330 characters in body | ||
|
Sorry for the waffly title - if I could come up with a concise title, I wouldn't have to ask the question. Suppose I have an immutable list type. It has an operation
(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.) The important thing is that the existing lists are not altered by Another (more idiomatic) way of getting to the end result would be:
My question is: what's the best name for Foo? EDIT 3: As I reveal later on, the name of the type might not actually be (End of edit 3) Options I've come up with so far:
The criteria I'm using for choosing are:
Please ask for more details if I'm not making myself clear enough... EDIT 1: Here's my reasoning for preferring
In my view (and this is 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 EDIT 2: Reasons for not liking Add. Various answers are effectively: "Go with Add. That's what Now, I should reveal a subtlety to the question - the type might not 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:
isn't going to accomplish anything, but it becomes a lot murkier when you change it to:
That looks like it should be okay. Whereas this, to me, makes the mistake clearer:
That's just begging to be:
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 may not be possible, but I'd like to try. 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 |
||||
|
3 | Added more description of objections to Add | ||
What's the best name for a non-mutating "add" method on an immutable listcollection?EDIT 1: Here's my reasoning for preferring In my view (and this is 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 EDIT 2: Reasons for not liking Add. Various answers are effectively: "Go with Add. That's what Now, I should reveal a subtlety to the question - the type might not 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: |
||||
|
2 | added 708 characters in body | ||
|
1 |
|
||
