show/hide this revision's text 3 Trying to clarify pseudo-code

I was fooling around with some functional programming when I came across the need for this function, however I don't know what this sort of thing is called in standard nomenclature. Anyone recognizes it?

function XXXX(...WhatAmIDoing(args...)
   return function()
       return ...
   args
   end
end

Edit: generalized the function, it takes a variable amount of arguments ( or perhaps an implicit list) and returns a function that when invoked returns all the artsargs, something like a curry or pickle, but it doesn't seem to be either.

show/hide this revision's text 2 added 255 characters in body

I was fooling around with some functional programming when I came across the need for this function, however I don't know what this sort of thing is called in standard nomenclature. Anyone recognizes it?

function XXXX(x,y,zXXXX(...)
   return function()
       return x,y,z
   ...
   end
end

Edit: generalized the function, it takes a variable amount of arguments ( or perhaps an implicit list) and returns a function that when invoked returns all the arts, something like a curry or pickle, but it doesn't seem to be either.

show/hide this revision's text 1

What is this functional "pattern" called?

I was fooling around with some functional programming when I came across the need for this function, however I don't know what this sort of thing is called in standard nomenclature. Anyone recognizes it?

function XXXX(x,y,z)
   return function()
       return x,y,z
   end
end