Table of Contents
Previous Chapter
- indexing
- description: "Access to command-line arguments. This class may be used as ancestor by classes needing its facilities."
- class interface
- feature -- Access
- argument (i: INTEGER): STRING
- -- i-th argument of command that started system execution
- -- (the command name if i = 0)
- index_large_enough: i >= 0;
- index_small_enough: i <= argument_count
- -- Name of command that started system execution
- definition: Result = argument (0)
- feature -- Measurement
- -- Number of arguments given to command that started
- -- system execution (command name does not count)
- Result >= 0
- end
Table of Contents
Next Chapter
|