Legacy Documentation

Mathematica® Teacher's Edition (2002)

This is documentation for an obsolete product.
Current products and services
 Documentation /  Mathematica Teacher's Edition /  Built-in Functions /  Programming /  Functional Programming /

MapAll

FilledSmallSquare MapAll[f, expr] or f //@ expr applies f to every subexpression in expr.

FilledSmallSquare Example: MapAll[f, a,b,c,d]LongRightArrow.
FilledSmallSquare MapAll[f, expr] is equivalent to Map[f, expr, 0, Infinity].
FilledSmallSquare See The Mathematica Book on the web: Section 2.2.4.
FilledSmallSquare See also: ExpandAll, ReplaceAll.