Tagged Questions

A programming idiom is a way to overcome a programming language limitation and/or to write commonly-used code with a purpose that is separated from a literal meaning of the code. Also, an idiom is a preferred way to write code, when there is more than one obvious way to do it.

learn more… | top users | synonyms (1)

46
votes
8answers
3k views

What is the “Execute Around” idiom?

What is this "Execute Around" idiom (or similar) I've been hearing about? Why might I use it, and why might I not want to use it?
31
votes
10answers
3k views

Is there a downside to adding an anonymous empty delegate on event declaration?

I have seen a few mentions of this idiom (including on SO): // Deliberately empty subscriber public event EventHandler AskQuestion = delegate {}; The upside is clear - it avoids the need to check ...
30
votes
18answers
2k views

Famous eponymous programming techniques [closed]

In some sports certain techniques or elements are named after the athlete who invented or first performed them—for example, Biellmann spin. Is their widespread use of such names for programming ...
28
votes
2answers
1k views

Hashes of Hashes Idiom in Ruby?

Creating hashes of hashes in Ruby allows for convenient two (or more) dimensional lookups. However, when inserting one must always check if the first index already exists in the hash. For example: h ...
27
votes
12answers
5k views

Common Ruby Idioms

One thing I love about ruby is that mostly it is a very readable language (which is great for self-documenting code) However, inspired by this question: ...
24
votes
8answers
1k views

Is there a tutorial that teaches common Ruby programming idioms used by experienced programmers, but may not be obvious to newcomers?

I'm looking for a Ruby's equivalent of Code Like a Pythonista: Idiomatic Python Desirable features: easy to read single document which covers all topics: tips, tricks, guidelines, caveats, and ...
23
votes
16answers
780 views

Best Loop Idiom for special casing the last element

I run into this case a lot of times when doing simple text processing and print statements where I am looping over a collection and I want to special case the last element (for example every normal ...
22
votes
13answers
2k views

What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience?

What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience? An example: class A { public: char s[1024]; char *p; A::A() { p = s; } void ...
21
votes
15answers
16k views

Best ruby idiom for “nil or zero”

I am looking for a concise way to check a value to see if it is nil or zero. Currently I am doing something like: if (!val || val == 0) # Is nil or zero end But this seems very clumsy.
20
votes
7answers
4k views

Practical Uses for the “Curiously Recurring Template Pattern”

What are some practical uses for the "Curiously Recurring Template Pattern"? The "counted class" example commonly shown just isn't a convincing example to me.
18
votes
9answers
1k views

Is str.replace(..).replace(..) ad nauseam a standard idiom in Python?

For instance, say I wanted a function to escape a string for use in HTML (as in Django's escape filter): def escape(string): """ Returns the given string with ampersands, quotes ...
16
votes
8answers
461 views

Why implicitly check for emptiness in Python? [closed]

The Zen of Python says that explicit is better than implicit. Yet the Pythonic way of checking a collection c for emptiness is: if not c: # ... and checking if a collection is not empty is ...
15
votes
4answers
270 views

PHP - best way to initialize an object with a large number of parameters and default values

I'm designing a class that defines a highly complex object with a ton (50+) of mostly optional parameters, many of which would have defaults (eg: $type = 'foo'; $width = '300'; $interactive = false;). ...
14
votes
3answers
247 views

idiomatic C for const double-pointers

I am aware that in C you can't implicitly convert, for instance, char** to const char** (c.f. C-Faq, SO question 1, SO Question 2). On the other hand, if I see a function declared like so: void ...
14
votes
7answers
1k views

Python “Every Other Element” Idiom

I feel like I spend a lot of time writing code in Python, but not enough time creating Pythonic code. Recently I ran into a funny little problem that I thought might have an easy, idiomatic solution. ...
14
votes
14answers
5k views

Python idiom to return first item or None

I'm sure there's a simpler way of doing this that's just not occurring to me. I'm calling a bunch of methods that return a list. The list may be empty. If the list is non-empty, I want to return ...
14
votes
9answers
4k views

How do I manipulate $PATH elements in shell scripts?

Is there a idiomatic way of removing elements from PATH-like shell variables? That is I want to take PATH=/home/joe/bin:/usr/local/bin:/usr/bin:/bin:/path/to/app/bin:. and remove or replace the ...
13
votes
6answers
325 views

Lightweight wrapper - is this a common problem and if yes, what is its name?

I have to use a library that makes database calls which are not thread-safe. Also I occasionally have to load larger amounts of data in a background thread. It is hard to say which library functions ...
13
votes
7answers
3k views

Named Parameter idiom in Java

How to implement Named Parameter idiom in Java? (especially for constructors) I am looking for an Objective-C like syntax and not like the one used in JavaBeans. A small code example would be fine. ...
13
votes
7answers
2k views

What C++ idioms should C++ programmers use?

Question What C++ idioms should C++ programmers know? By C++ idioms, I mean design patterns or way of doing certain things that are only applicable for C++ or more applicable for C++ than most other ...
13
votes
5answers
2k views

Alternative to the `match = re.match(); if match: …` idiom?

If you want to check if something matches a regex, if so, print the first group, you do.. import re match = re.match("(\d+)g", "123g") if match is not None: print match.group(1) This is ...
13
votes
7answers
2k views

What is the clojure equivalent of the Python idiom “if __name__ == '__main__'”?

I'm dabbling in clojure and am having a little trouble trying to determine the clojure (and / or Lisp) equivalent of this common python idiom. The idiom is that at the bottom of a python module there ...
13
votes
2answers
565 views

JavaScript idiom: create a function only to invoke it

I am learning YUI and have occasionally seen this idiom: <script> (function x(){ do abcxyz})(); </script> Why do they create a function just to invoke it? Why not just write: ...
13
votes
13answers
2k views

What are the important language features (idioms) of Python to learn early on

I would be interested in knowing what the StackOverflow community thinks are the important language features (idioms) of Python. Features that would define a programmer as Pythonic. Python (pythonic) ...
12
votes
4answers
469 views

Does a function like this already exist? (Or, what's a better name for this function?)

I've written code with the following pattern several times recently, and was wondering if there was a shorter way to write it. foo :: IO String foo = do x <- getLine putStrLn x >> ...
12
votes
3answers
465 views

Is the Perl Goatse 'Secret Operator' efficient?

The "goatse operator" or the =()= idiom in Perl causes an expression to be evaluated in list context. An example is: my $str = "5 and 4 and a 3 and 2 1 BLAST OFF!!!"; my $count =()= $str =~ /\d/g; ...
12
votes
5answers
371 views

What's the point of “for x in y” in Ruby?

I'm learning Ruby and RoR at the moment, and I came across this: <% for post in @posts %> in the Rails guide. I'd understood that the idiomatic way to do this in Ruby is with: <% ...
12
votes
3answers
403 views

avoiding the tedium of optional parameters

If I have a constructor with say 2 required parameters and 4 optional parameters, how can I avoid writing 16 constructors or even the 10 or so constructors I'd have to write if I used default ...
11
votes
10answers
788 views

x86 assembly idioms

I've been trying to get a good hold on the x86 assembly language, and was wondering if there was a quick-and-short equivalent of movl $1, %eax. That's when I thought that a list of idioms used ...
11
votes
8answers
1k views

What is a programming idiom?

I see the phrase "programming idiom" thrown around as if it is commonly understood. Yet, in search results and stackoverflow I see everything... From micro: Incrementing a variable Representing an ...
10
votes
2answers
968 views

Resources for learning idiomatic Haskell (eta reduction, symbolic infix operators, libraries etc.) [closed]

Despite some experience with Lisp and ML, I'm having a great deal of trouble learning to read and (idiomatically) write Haskell because the local style seems to be do eta elimination whenever ...
10
votes
8answers
235 views

Is returning a reference for accessor idiomatic?

In C++, it is possible to create an accessor which returns a reference to a private field. class Cls { private: int _attr; public: int& attr() { return _attr; } }; such ...
10
votes
5answers
273 views

Reason for Assignment to “ _ ”

I have seen this in a few contexts, e.g., in sequence unpacking: _, x = L.pop() # e.g., L is a list of tuples to initialize a container: X = _ So obviously this is not an element of the ...
10
votes
4answers
1k views

Idiomatic Python: 'times' loop

Say I have a function foo that I want to call n times. In Ruby, I would write: n.times { foo } In Python, I could write: for _ in xrange(n): foo() But that seems like a hacky way of doing ...
10
votes
1answer
8k views

Rails 3: What is the proper way to respond to REST-ful actions with JSON in rails?

I'm trying to make an API for my rails application using JSON responses to RESTful resource controllers. This is a new experience for me, so I'm looking for some guidance and pointers. To start things ...
10
votes
4answers
569 views

“GetOrCreate” - does that idiom have an established name?

Ok, consider this common idiom that most of us have used many times (I assume): class FooBarDictionary { private Dictionary<String, FooBar> fooBars; ... FooBar GetOrCreate(String ...
10
votes
6answers
328 views

What idiom (if any) do you prefer for naming the “this” parameter to extension methods in C#, and why?

The first parameter to a C# extension method is the instance that the extension method was called on. I have adopted an idiom, without seeing it elsewhere, of calling that variable "self". I would not ...
9
votes
3answers
535 views

Trailing Array Idiom

What is Trailing Array Idiom ? P.S : Googling this term gives The vectors are implemented using the trailing array idiom, thus they are not resizeable without changing the address of the vector ...
9
votes
4answers
367 views

What's the most idiomatic Clojure way to write this?

I wrote this function that does this (easier to show than explain): (split 2 (list 1 2 3 4 5 6)) => ((1 2) (2 3) (3 4) (4 5) (5 6)) (defn split [n xs] (if (> (count xs) (dec n)) ...
9
votes
9answers
873 views

Good or Bad C++ Idiom - Objects used purely for constructor/destructor?

I have a few classes which do nothing except in their constructors/destructors. Here's an example class BusyCursor { private: Cursor oldCursor_; public: BusyCursor() { ...
8
votes
8answers
438 views

What features of Scala cannot be translated to Java?

The Scala compiler compiles direct to Java byte code (or .NET CIL). Some of the features of Scala could be re-done in Java straightforwardly (e.g. simple for comprehensions, classes, translating ...
8
votes
7answers
323 views

When to use each of T[], List<T>, IEnumerable<T>?

I usually find myself doing something like: string[] things = arrayReturningMethod(); int index = things.ToList<string>.FindIndex((s) => s.Equals("FOO")); //do something with index return ...
8
votes
1answer
331 views

Can we increase the re-usability of this key-oriented access-protection pattern?

Can we increase the re-usability for this key-oriented access-protection pattern: class SomeKey { friend class Foo; // more friends... ? SomeKey() {} // possibly non-copyable too }; ...
8
votes
10answers
5k views

Python: most idiomatic way to convert None to empty string?

What is the most idiomatic way to do the following? def xstr(s): if s is None: return '' else: return s s = xstr(a) + xstr(b) update: I'm incorporating Tryptich's ...
8
votes
2answers
2k views

Parallel Programming and C++

I've been writing a lot recently about Parallel computing and programming and I do notice that there are a lot of patterns that come up when it comes to parallel computing. Noting that Microsoft ...
7
votes
3answers
351 views

help on writing “the colist Monad” (Exercise from an Idioms intro paper)

I'm reading Conor McBride and Ross Paterson's "Functional Pearl / Idioms: applicative programming with effects:" (The new version, with "idioms" in the title). I'm having a little difficulty with ...
7
votes
2answers
381 views

Ruby “return unless nil” idiom

I've got a smelly method like: def search_record(*args) record = expensive_operation_1(foo) return record unless record.nil? record = expensive_operation_2(foo, bar) return record unless ...
7
votes
2answers
178 views

C++, the term/idiom for programming using template

I keep reading the term : template programming generic programming meta-programming maybe another idiom/term.. for any c++ code that use template, which one is the correct or more accurate term of ...
7
votes
4answers
375 views

scheme for object-oriented programmers

I'm thoroughly intrigued by Scheme, and have started with some toy programming examples, and am reading through Paul Graham's On Lisp. One thing I haven't been able to find is a book or website ...
7
votes
2answers
432 views

Haskell: Want a better way of doing: value == x || value == y ||

I'm new to Haskell, so am sorry if this is incredibly obvious... I have made the following function (used here as an example to ask about multiple value==something || value==somethingElse checks) ...

1 2 3 4 5 6