Name:

sort sorts a list of real numbers.

Library name:

sollya_obj_t sollya_lib_sort(sollya_obj_t)

Usage:

sort(L) : list -> list

Parameters:

Description:

Example 1:

   > sort([| |]);
   [| |]
   > sort([|2,3,5,2,1,4|]);
   [|1, 2, 2, 3, 4, 5|]
Go back to the list of commands