Tagged Questions

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