What's your naming convention for helper functions? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T09:18:45Zhttp://stackoverflow.com/feeds/question/418120http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/418120/whats-your-naming-convention-for-helper-functions3What's your naming convention for helper functions?Cybis2009-01-06T20:55:44Z2009-01-07T09:19:39Z
<p>In functional programming, it's often important to optimize any "looping" code to be tail recursive. Tail recursive algorithms are usually split between two functions, however - one which sets up the base case, and another that implements the actual loop. A good (albeit academic) example would be the reverse function.</p>
<pre><code>reverse :: [a] -> [a]
reverse = reverse_helper []
reverse_helper :: [a] -> [a] -> [a]
reverse_helper result [] = result
reverse_helper result (x:xs) = reverse_helper (x:result) xs
</code></pre>
<p>"reverse_helper" isn't really a good, descriptive name. However, "reverse_recursive_part" is just awkward.</p>
<p>What naming convention would you use for helper functions like this?</p>
http://stackoverflow.com/questions/418120/whats-your-naming-convention-for-helper-functions/418138#4181380Answer by Steven A. Lowe for What's your naming convention for helper functions?Steven A. Lowe2009-01-06T20:59:50Z2009-01-06T20:59:50Z<p>setup and execute</p>
<p>example:</p>
<pre><code>function whateverSetup() { ... }
function whateverExecute() { ... }
</code></pre>
http://stackoverflow.com/questions/418120/whats-your-naming-convention-for-helper-functions/418147#4181472Answer by Crescent Fresh for What's your naming convention for helper functions?Crescent Fresh2009-01-06T21:01:51Z2009-01-06T21:01:51Z<p>I tend to add "_recurse" to the end. So "reverse_recurse". Not sure where I got that from. I like leaving the base case function simple as you have in your example. It tends to be the "public" function and the fact that it uses a helper function to perform the iteration is irrelevant to the caller. In javascript I sometimes go so far as to hide the iterative function via a closure, to make it really clear it is not to be called directly.</p>
http://stackoverflow.com/questions/418120/whats-your-naming-convention-for-helper-functions/418457#4184573Answer by small_duck for What's your naming convention for helper functions?small_duck2009-01-06T22:34:39Z2009-01-06T22:34:39Z<p>I always use do_, like "do_compute" with "compute". I find it quite descriptive as it is effectively the part of the function that performs the action, whereas the "compute" that gets called needs to have a simple descriptive name for the outside world.</p>
http://stackoverflow.com/questions/418120/whats-your-naming-convention-for-helper-functions/418478#41847810Answer by ShreevatsaR for What's your naming convention for helper functions?ShreevatsaR2009-01-06T22:43:15Z2009-01-06T22:43:15Z<p>You can call the helper function anything you want, and it won't matter as long as you don't put the helper function in the "global" namespace. Simply adding a "prime" seems a common practice. :) E.g., in Haskell,</p>
<pre><code>reverse :: [a] -> [a]
reverse = reverse' []
where reverse' :: [a] -> [a] -> [a]
reverse' result [] = result
reverse' result (x:xs) = reverse' (x:result) xs
</code></pre>
http://stackoverflow.com/questions/418120/whats-your-naming-convention-for-helper-functions/418592#4185922Answer by Tom Lokhorst for What's your naming convention for helper functions?Tom Lokhorst2009-01-06T23:21:21Z2009-01-06T23:33:24Z<p>I agree with ShreevatsaR, if you don't make the helper function top-level (or worse, put it in the export list), than it doesn't matter what its name is.
I tend to call helper functions <code>f</code> and <code>g</code>.</p>
<pre><code>reverse :: [a] -> [a]
reverse = f []
where
f ys [] = xs
f ys (x:xs) = f (x:ys) xs
</code></pre>
<p>I just use this naming scheme for small functions (otherwise I don't know what the <code>f</code> refers to). Then again, why would you ever write big functions?</p>
<p>However, if you do want to export your 'helper' function because it might be useful to others, I would call it:</p>
<pre><code>reverseAccumulator
</code></pre>
<p>Like Haskell's <code>zip</code> and <code>zipWith</code>.
But I wouldn't call those 'helper' functions, <code>zipWith</code> is just a generic function and <code>zip</code> is the default implementation (probably the one thats used the most).</p>
http://stackoverflow.com/questions/418120/whats-your-naming-convention-for-helper-functions/418873#4188732Answer by Chris Conway for What's your naming convention for helper functions?Chris Conway2009-01-07T01:31:28Z2009-01-07T01:31:28Z<p>I use <code>aux</code> or <code>foo_aux</code> (for main function <code>foo</code>), and nest the definition so it's not externally visible.</p>
http://stackoverflow.com/questions/418120/whats-your-naming-convention-for-helper-functions/419688#4196882Answer by Magnus for What's your naming convention for helper functions?Magnus2009-01-07T09:19:39Z2009-01-07T09:19:39Z<p>I also agree with ShreevatsaR, in this example I would make the helper a private function.</p>
<p>For other cases where I need helper functions to be visible in the whole module, but not exported, I tend to prefix functions with '_'. Sure, there is the explicit exports statement but during development I tend to export all functions to ease interactive exploration, e.g. in ghci. Later on I add the list of exported functions and the underbar makes it easy to remember whether I intended a function to be local or not.</p>