How do I denote that I am aggregating values into a vector?
For example, I have a set of values $F$ in which a function $fun$ will be applied. Finally, a vector is build with the results.
For example, if $F = \{a,b\}$ and $fun(a) = 1, fun(b) = 2$, how can I denote that I'm assembling the vector: [1 2]?
Will a cartesian product suffice?
$$ V = \prod_{e \in F} fun(e) $$
Or should I use other operation?