up previous next
Alias In

temporarily override global aliases
Syntax

Alias B_1,...,B_r In C EndAlias

where each B_i is a binding of the form: Identifier := $PackageName,
and C is a command sequence.


Description
This command allows one to use the aliases defined by the B_i's in the command sequence C without affecting the global aliases.

Example
  Alias GB := $man/help In
    GB.Man("Alias In");
  EndAlias;
============ Alias In =============
   ---> Output suppressed <---
-------------------------------
  I := Ideal(x^2, y);
  G := Res(I);
  GB.GetBettiMatrix(I);     -- the global alias GB is unaffected
   ---> Output suppressed <---
-------------------------------


See Also