Qore Programming Language Reference Manual  0.8.12.3
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 
400 
402 
417 list sortDescending(list l, string func);
418 
420 
435 list sortDescending(list l, code f);
436 
438 
442 any sortDescendingStable(any arg);
443 
445 
467 
469 
489 list sortDescendingStable(list l, string func);
490 
492 
513 list sortDescendingStable(list l, code f);
514 
516 
520 any sortStable(any arg);
521 
523 
539 list sortStable(list l);
540 
542 
557 list sortStable(list l, string func);
558 
560 
581 list sortStable(list l, code f);
582 
584 
588 any sort_descending(any arg);
589 
591 
613 
615 
635 list sort_descending(list l, string func);
636 
638 
659 list sort_descending(list l, code f);
660 
662 
666 any sort_descending_stable(any arg);
667 
669 
691 
693 
713 list sort_descending_stable(list l, string func);
714 
716 
737 list sort_descending_stable(list l, code f);
738 
740 
744 any sort_stable(any arg);
745 
747 
769 
771 
791 list sort_stable(list l, string func);
792 
794 
815 list sort_stable(list l, code f);
816 
818 };
any sort_descending(any arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
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 ...
any sort_stable(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.
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:2
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 ...
any sort_descending_stable(any arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...