In a functional programming what would you call this sort of operation?
function(f,vargs){ //variable count of arguments
return function(){
return f(vargs)
}
}
I think this is Currying, but I had the impression that currying is the term when we bind a single argument not several arguments. Or perhaps this is a delay, not really sure...