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 f and g.
reverse :: [a] -> [a]
reverse = f []
where
f ys [] = xs
f ys (x:xs) = f (x:ys) xs
I just use this naming scheme for small functions (otherwise I don't know what the f refers to). Then again, why would you ever write big functions?
-- Addition --
However, if you do want to export your 'helper' function because it might be useful to others, I would call it:
reverseAccumulator
Like Haskell's zip (default implementation) and zipWith (more .
But I wouldn't call those 'helper' functions, zipWith is just a generic case)function and zip is the default implementation (probably the one thats used the most).
