Tagged Questions

5
votes
7answers
928 views

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 ...