Ive asked this before but i didn’t quite get what i needed..
If a had a function called f(x) and all it did was return [x…x+2] (just an example)
( f(x) = [x…x+2] )
Could i have another fuction called say J(f,L) and what it did is i type in the fuction im using ( in this case f() and the numbers it inputs. And then Joins them at the end
( J( f(x), x=[1,2,3,4,5]) ) – would output [1,2,3,2,3,4,3,4,5,4,5,6,5,6,7]
Basically it does join(f(1),f(2),f(3),f(4),f(5))
Also im no sure if you can put a function through a function so if it is just deafult to f(x) its fine:
J([1…3] → join(f(1),f(2),f(3)
thx ![]()