What is the difference between 'Call Function' and 'Call Function on Each Element in Array' in Blueprints?
-
A
The latter iterates over an array and calls the function once per element using a ForEachLoop pattern
-
B
The latter calls the function simultaneously on all elements using multithreading
-
C
The former is for Pure functions while the latter works only with impure functions
-
D
There is no difference; both nodes produce identical behavior