*

x * y -- yields the product of x and y.
* x -- unary operator available to the user.

The user may install binary methods for this operator with code such as

              X * Y := (x,y) -> ...
where X is the class of x and Y is the class of y.

A unary method for this operator may be installed with code such as

               * X := x -> ... 
Here are some of the methods installed.
  • Set * Set
  • See also times and product.


    topindexpreviousupnext