Type-stability with a vector of FunctionWrappers

You can’t loop and index them like that You’d have to

    map(wrappers,parameters) do f,p
        x, y, t, u = rand(4)
        f(x, y, t, u, p)
    end
1 Like