|
MapAll
MapAll[f, expr] or f //@ expr applies f to every subexpression in expr.
Example: MapAll[f,  a,b , c,d ]  .
MapAll[f, expr] is equivalent to Map[f, expr, 0, Infinity ].
MapAll[f, expr, Heads -> True] applies f inside the heads of the parts of expr.
See Section 2.2.4.
See also: ExpandAll, ReplaceAll.
New in Version 1.
Further Examples
|