Qore Programming Language Reference Manual  0.8.9
 All Classes Namespaces Functions Variables Groups Pages
ql_list.dox.h
1 
3 namespace Qore {
8 
10 
14 bool inlist();
15 
17 
21 bool inlist(any arg, nothing x);
22 
24 
40 bool inlist(any arg, softlist l);
41 
43 
47 bool inlist_hard();
48 
50 
54 bool inlist_hard(any arg, nothing x);
55 
57 
73 bool inlist_hard(any arg, softlist l);
74 
76 
92 any max(list l);
93 
95 
110 any max(list l, string func);
111 
113 
129 any max(list l, code f);
130 
132 
148 any max( ...);
149 
151 
167 any min(list l);
168 
170 
185 any min(list l, string func);
186 
188 
204 any min(list l, code f);
205 
207 
223 any min( ...);
224 
226 
253 list range(int start, int stop, int step = 1);
254 
256 
277 list range(int stop);
278 
280 
284 nothing reverse();
285 
287 
301 list reverse(list l);
302 
304 
308 any sort(any arg);
309 
311 
330 list sort(list l);
331 
333 
351 list sort(list l, string func);
352 
354 
373 list sort(list l, code f);
374 
376 
380 any sortDescending(any arg);
381 
383 
403 
405 
423 list sortDescending(list l, string func);
424 
426 
445 list sortDescending(list l, code f);
446 
448 
452 any sortDescendingStable(any arg);
453 
455 
475 
477 
495 list sortDescendingStable(list l, string func);
496 
498 
517 list sortDescendingStable(list l, code f);
518 
520 
524 any sortStable(any arg);
525 
527 
546 list sortStable(list l);
547 
549 
567 list sortStable(list l, string func);
568 
570 
589 list sortStable(list l, code f);
590 
592 };
any max(list l)
Returns the maximum value in a list.
any sortDescending(any arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
any sortDescendingStable(any arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
any sort(any arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
bool inlist()
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
list list(...)
Returns a list of the arguments passed at the top level.
any min(list l)
Returns the minumum value in a list.
any sortStable(any arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
list range(int start, int stop, int step=1)
Returns a list containing an arithmetic progression of integers.
nothing reverse()
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
bool inlist_hard()
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...