Tagged Questions

5
votes
7answers
902 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 ...
2
votes
4answers
119 views

“foop”: a naming convention? It's a helper recursive function for “foo”; what does the suffix “p” mean?

I've come across the following code snippet (a function definition): choose (x:xs) = choosep x xs where choosep x [] = x choosep x (_:_) = x choosep _ (x:xs) = choosep x xs in ...