eval_list
eval_list — evaluates each element of a list.
eval_list (list)
listA list.
A new list whose elements are the results of evaluating each of the
elements of the argument list in turn.
Evaluates each element of the list. Returns the
results as a new list whose elements correspond on a one-to-one basis with
the elements of the list.
![]() | |
The |
Gamma>a = 5;5Gamma>b = 3;3Gamma>c = list (#a, #b, "Their sum", #(a+b));(a b "Their sum" (+ a b))Gamma>eval_list(c);(5 3 "Their sum" 8)Gamma>