I\'ve got an arrayList filled with elements. I would like to pass the elements of that array list as arguments to a variadic function.
My function
p
I always create an overload that takes Iterable< ? extends IEntityModifier >, and make the variadic version forward to this one using Arrays.asList(), which is cheap.
Iterable< ? extends IEntityModifier >
Arrays.asList()