Tagged Questions
The high-order tag has no wiki summary.
3
votes
3answers
78 views
How do some programming languages distinguish between a function and a function pointer?
I'm talking mostly about functional programming languages. For example, the wikipedia article for map has this example in a Haskell-ish language:
map square [1,2,3,4,5]
How does the parser/compiler ...
3
votes
3answers
2k views
Client Side MD5 Hash with Time Salt
I want to salt a hashed username and password (submitted via http POST) in JS on the client-side with a higher-order time value (< 1 minute resolution) to avoid sending the username and password ...
2
votes
5answers
280 views
Is there a standard name for this function?
What would you name a function that takes a list and a function, and returns True if applying the function to all elements gives the same result?
def identical_results(l, func):
if len(l) <= ...
1
vote
3answers
276 views
Doing a N-dimensional walk in pure functional ML?
The idea is to walk over multiple dimensions, each one defined as a range
(* lower_bound, upper_bound, number_of_steps *)
type range = real * real * int
so functions like fun foo y x or fun foo z y ...