Qore Programming Language Reference Manual  0.9.4.3
ql_list.dox.h
1 
3 namespace Qore {
9 
14 bool inlist();
15 
17 
21 bool inlist(any arg, nothing x);
22 
24 
40 bool inlist(auto arg, softlist<auto> l);
41 
43 
47 bool inlist_hard();
48 
50 
54 bool inlist_hard(any arg, nothing x);
55 
57 
73 bool inlist_hard(auto arg, softlist<auto> l);
74 
76 
92 auto max(list<auto> l);
93 
95 
110 auto max(list<auto> l, string func);
111 
113 
129 auto max(list<auto> l, code f);
130 
132 
148 auto max( ...);
149 
151 
167 auto min(list<auto> l);
168 
170 
185 auto min(list<auto> l, string func);
186 
188 
204 auto min(list<auto> l, code f);
205 
207 
223 auto min( ...);
224 
226 
253 list<int> range(int start, int stop, int step = 1);
254 
256 
277 list<int> range(int stop);
278 
280 
284 nothing reverse();
285 
287 
301 list<auto> reverse(list<auto> l);
302 
304 
308 auto sort(auto arg);
309 
311 
330 list<auto> sort(list<auto> l);
331 
333 
351 list<auto> sort(list<auto> l, string func);
352 
354 
373 list<auto> sort(list<auto> l, code f);
374 
376 
380 auto sortDescending(auto arg);
381 
383 
399 list<auto> sortDescending(list<auto> l);
400 
402 
417 list<auto> sortDescending(list<auto> l, string func);
418 
420 
435 list<auto> sortDescending(list<auto> l, code f);
436 
438 
442 auto sortDescendingStable(auto arg);
443 
445 
466 list<auto> sortDescendingStable(list<auto> l);
467 
469 
489 list<auto> sortDescendingStable(list<auto> l, string func);
490 
492 
513 list<auto> sortDescendingStable(list<auto> l, code f);
514 
516 
520 auto sortStable(auto arg);
521 
523 
539 list<auto> sortStable(list<auto> l);
540 
542 
557 list<auto> sortStable(list<auto> l, string func);
558 
560 
581 list<auto> sortStable(list<auto> l, code f);
582 
584 
588 auto sort_descending(auto arg);
589 
591 
612 list<auto> sort_descending(list<auto> l);
613 
615 
635 list<auto> sort_descending(list<auto> l, string func);
636 
638 
659 list<auto> sort_descending(list<auto> l, code f);
660 
662 
666 auto sort_descending_stable(auto arg);
667 
669 
690 list<auto> sort_descending_stable(list<auto> l);
691 
693 
713 list<auto> sort_descending_stable(list<auto> l, string func);
714 
716 
737 list<auto> sort_descending_stable(list<auto> l, code f);
738 
740 
744 auto sort_stable(auto arg);
745 
747 
768 list<auto> sort_stable(list<auto> l);
769 
771 
791 list<auto> sort_stable(list<auto> l, string func);
792 
794 
815 list<auto> sort_stable(list<auto> l, code f);
816 
818 }
Qore::max
auto max(list< auto > l)
Returns the maximum value in a list.
Qore::sort
auto sort(auto arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
Qore::reverse
nothing reverse()
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
Qore::inlist_hard
bool inlist_hard()
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
Qore::sortDescending
auto sortDescending(auto arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
Qore::range
list< int > range(int start, int stop, int step=1)
Returns a list containing an arithmetic progression of integers.
Qore::sortStable
auto sortStable(auto arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
Qore::inlist
bool inlist()
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
Qore::sort_stable
auto sort_stable(auto arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
Qore::sortDescendingStable
auto sortDescendingStable(auto arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
Qore::min
auto min(list< auto > l)
Returns the minumum value in a list.
Qore::sort_descending
auto sort_descending(auto arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
Qore
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3
Qore::sort_descending_stable
auto sort_descending_stable(auto arg)
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...