Tagged Questions
The helper-functions tag has no wiki summary.
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 ...
3
votes
7answers
241 views
How to encapsulate the helper functions(commonly used apis) in a OOP language like java?
These functions may be hard to fit into a specific class,
what's the best practice to deal with them?
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 ...
0
votes
2answers
185 views
helper functions as static functions or procedural functions?
i wonder if one should create a helper function in a class as a static function or just have it declared as a procedural function?
i tend to think that a static helper function is the right way to go ...
0
votes
1answer
43 views
(rails) how does one correctly link to a javascript file in a rails view?
Is there a helper of some sort? I want to make a javascript file, put it in the rails directories somewhere, and have the file be included in a view so I can use the methods and functions I declare in ...