i am trying to define a curried function which takes a function and a list of tuples as input and returns a Boolean value
for example
values(fn (x,y:int)=>(x-y) [(5,0)];
val it = true:bool
but my problem is i don't know how to pass a dynamic function as an argument.is it possible???help me out.i am a beginner.
Thanks