1 |
Three classes of mappings for dummy arguments
-
Prescriptive: ³Wherever the actual is, remap it here²
-
Syntax: DISTRIBUTE A (BLOCK)
-
Note: Remapping is undone on return
-
Descriptive: ³The actual should be here²
-
Syntax: DISTRIBUTE A *(BLOCK)
-
Note: If actual is not there, a warning is suggested but not required
-
Transcriptive: ³Leave the actual where it is²
-
Syntax: DISTRIBUTE A *
-
Or: INHERIT A
|