Qore Programming Language Reference Manual 2.0.0
Loading...
Searching...
No Matches
ql_list.dox.h
1
3namespace Qore {
8
10
16bool inlist();
17
19
25bool inlist(any arg, nothing x);
26
28
45bool inlist(auto arg, softlist<auto> l);
46
48
55
57
63bool inlist_hard(any arg, nothing x);
64
66
83bool inlist_hard(auto arg, softlist<auto> l);
84
86
103
105
124auto max(list<auto> l, string func);
125
127
149auto max(list<auto> l, code f);
150
152
168auto max( ...);
169
171
188
190
209auto min(list<auto> l, string func);
210
212
234auto min(list<auto> l, code f);
235
237
253auto min( ...);
254
256
287list<int> range(int start, int stop, int step = 1);
288
290
314list<int> range(int stop);
315
317
323nothing reverse();
324
326
341
343
349auto sort(auto arg);
350
352
376
378
404list<auto> sort(list<auto> l, string func);
405
407
436
438
444auto sortDescending(auto arg);
445
447
468
470
494
496
521
523
529auto sortDescendingStable(auto arg);
530
532
554
556
581
583
610
612
618auto sortStable(auto arg);
619
621
638
640
660
662
689
691
697auto sort_descending(auto arg);
698
700
726
728
757
759
790
792
799
801
823
825
850
852
879
881
887auto sort_stable(auto arg);
888
890
912
914
939
941
968
970}
auto sort_descending(auto arg)
This function variant does nothing at all.
list< int > range(int start, int stop, int step=1)
Returns a list containing an arithmetic progression of integers.
bool inlist_hard()
This function variant does nothing at all.
auto sort_descending_stable(auto arg)
This function variant does nothing at all.
auto sortStable(auto arg)
This function variant does nothing at all.
auto max(list< auto > l)
Returns the maximum value in a list.
bool inlist()
This function variant does nothing at all.
auto min(list< auto > l)
Returns the minumum value in a list.
nothing reverse()
This function variant does nothing at all.
auto sortDescendingStable(auto arg)
This function variant does nothing at all.
auto sort_stable(auto arg)
This function variant does nothing at all.
auto sortDescending(auto arg)
This function variant does nothing at all.
auto sort(auto arg)
This function variant does nothing at all.
list< auto > list(...)
Returns a list of the arguments passed at the top level.
main Qore-language namespace
Definition Pseudo_QC_All.dox.h:3