I want to apply a regular function that takes two arguments to a tuple. I defined a helper function as follows:
let apply f (a, b) =
f a b
However, I feel this should be a fairly common case and wondered if it was a function in the standard library (I'm not sure what conditions to look for)
source
share