|
D.6.18.8 Max
Procedure from library qhmoduli.lib (see qhmoduli_lib).
- Usage:
- Max(data); intvec/list of integers
- Purpose:
- find the maximal integer contained in 'data'
- Return:
- list
- Assume:
- 'data' contains only integers and is not empty
Example:
| LIB "qhmoduli.lib";
Max(list(1,2,3));
==> 3
|
|