On this page:
alias
8.16.0.4

11.4 Aliases🔗ℹ

definition

alias 'new_op_or_id_name':

  option

  'orig_op_or_id_name'

 

option

 = 

~only_space space ...

 | 

~only_space:

  space ...

  ...

 | 

~except_space space ...

 | 

~except_space:

  space ...

  ...

Defines new_op_or_id_name to be an alias for orig_op_or_id_name. By default, the new name is bound in all spaces where the original name is bound (before the alias form). The original name must be bound in some space.

If ~only_space is provided, then the new name is bound only in the listed spaces, and the original name must be bound in each of those spaces. If ~except_space is provided, then the new name is not bound in any of the listed spaces. Only one of ~only_space or ~except_space can be provided.

> alias 'Roster': 'List'

> Roster[1, 2, 3]

[1, 2, 3]

> [1, 2, 3] is_a Roster

#true

> alias '%': 'mod'

> 5 % 2

1