|
2 |
edited tags
|
||
|
1 |
|
||
What's your naming convention for helper functions?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.
"reverse_helper" isn't really a good, descriptive name. However, "reverse_recursive_part" is just awkward. What naming convention would you use for helper functions like this?
|
||||
