Alternatives
Alternatives as in (p1 | p2 | p3) are used when you want to refer to one of multiple patterns. So in the next cell ( _Sin | _Cos | _Tan ) represents an expression with the with the head Sin, Cos, or Tan.
in the next cell (f) is defined when given one argument with the head Real or Integer.
In the next cell (f) is defined when given one or more real arguments or one or more integer arguments. However, this definition isn't used when (f) is given a sequence of arguments where some are real and others are integer. Allowing a mix of different patterns requires is demonstrated in the section on Repeated, RepeatedNull.
Instead of using (x_Real x_Integer) we can use .
And instead of using (x__Real | x_Integer) we can use .
In addition any other combination of pattern matching constructs can be used with Alternatives. Nuances of pattern matching are discussed in another section.
A common place to use Alternatives is in the second argument of MakeBoxes when you want to use a MakeBoxes rule for StandardForm, and TraditionalForm, but not for InputForm, TableForm, etc. In that case use form:(StandardForm|TraditionalForm) as the second argument in the MakeBoxes definition as in the next cell. You can see below that this MakeBoxes rule is used for StandardForm, TraditionalForm, but not InputForm.
Created by Mathematica (May 16, 2004)