-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbook.ptc
1218 lines (1218 loc) · 83.6 KB
/
book.ptc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\ttl@starttoc {default@1}
\contentsline {part}{Part\ I\hspace {\betweenumberspace }Ninety-Nine Lisp Problems}{1}{part.1}
\contentsline {chapter}{\numberline {1}Ninety-Nine Lisp Problems}{3}{chapter.1}
\contentsline {section}{Working with lists}{3}{chapter.1}
\contentsline {section}{Arithmetic}{16}{chapter.1}
\contentsline {section}{Logic and Codes}{23}{chapter.1}
\contentsline {section}{Miscellaneous Problems}{24}{chapter.1}
\contentsline {part}{Part\ II\hspace {\betweenumberspace }Rosetta Code}{45}{part.2}
\contentsline {chapter}{\numberline {2}Rosetta Code Tasks starting with Numbers}{47}{chapter.2}
\contentsline {section}{100 doors}{47}{chapter.2}
\contentsline {section}{24 game}{48}{chapter.2}
\contentsline {section}{24 game/Solve}{51}{Item.3}
\contentsline {section}{99 Bottles of Beer}{52}{Item.3}
\contentsline {chapter}{\numberline {3}Rosetta Code Tasks starting with A}{53}{chapter.3}
\contentsline {section}{A+B}{53}{chapter.3}
\contentsline {section}{Abstract type}{54}{table.caption.8}
\contentsline {section}{Accumulator factory}{56}{table.caption.8}
\contentsline {section}{Ackermann function}{58}{Item.8}
\contentsline {section}{Active Directory/Connect}{59}{figure.caption.9}
\contentsline {section}{Active Directory/Search for a user}{60}{figure.caption.9}
\contentsline {section}{Active object}{61}{figure.caption.9}
\contentsline {section}{Add a variable to a class instance at runtime}{63}{Item.12}
\contentsline {section}{Address of a variable}{64}{Item.12}
\contentsline {section}{Align columns}{65}{Item.12}
\contentsline {section}{Amb}{67}{Item.18}
\contentsline {section}{Anagrams}{69}{Item.18}
\contentsline {section}{Anagrams/Deranged anagrams}{70}{Item.18}
\contentsline {section}{Animate a pendulum}{71}{Item.18}
\contentsline {section}{Animation}{72}{Item.18}
\contentsline {section}{Anonymous recursion}{75}{Item.18}
\contentsline {section}{Apply a callback to an array}{76}{Item.18}
\contentsline {section}{Arbitrary-precision integers (included)}{77}{Item.18}
\contentsline {section}{Arena storage pool}{78}{figure.caption.10}
\contentsline {section}{Arithmetic evaluation}{79}{Item.20}
\contentsline {section}{Arithmetic-geometric mean}{81}{Item.20}
\contentsline {section}{Arithmetic/Complex}{82}{figure.caption.13}
\contentsline {section}{Arithmetic/Rational}{84}{figure.caption.13}
\contentsline {section}{Arithmetic/Integer}{86}{figure.caption.13}
\contentsline {section}{Array concatenation}{87}{figure.caption.13}
\contentsline {section}{Arrays}{88}{figure.caption.13}
\contentsline {section}{Assertions}{90}{figure.caption.13}
\contentsline {section}{Associative arrays/Creation}{91}{figure.caption.13}
\contentsline {section}{Associative arrays/Iteration}{92}{figure.caption.13}
\contentsline {section}{Atomic updates}{93}{figure.caption.13}
\contentsline {section}{Averages/Arithmetic mean}{97}{Item.25}
\contentsline {section}{Averages/Mean angle}{98}{Item.25}
\contentsline {section}{Averages/Mean time of day}{100}{Item.30}
\contentsline {section}{Averages/Median}{101}{Item.30}
\contentsline {section}{Averages/Mode}{102}{Item.30}
\contentsline {section}{Averages/Pythagorean means}{103}{Item.30}
\contentsline {section}{Averages/Root mean square}{105}{figure.caption.17}
\contentsline {section}{Averages/Simple moving average}{106}{figure.caption.18}
\contentsline {chapter}{\numberline {4}Rosetta Code Tasks starting with B}{109}{chapter.4}
\contentsline {section}{Balanced brackets}{109}{chapter.4}
\contentsline {section}{Best shuffle}{111}{chapter.4}
\contentsline {section}{Binary digits}{113}{chapter.4}
\contentsline {section}{Binary search}{114}{chapter.4}
\contentsline {section}{Binary strings}{120}{chapter.4}
\contentsline {section}{Bitmap}{122}{chapter.4}
\contentsline {section}{Bitmap/B\'{e}zier curves/Cubic}{123}{chapter.4}
\contentsline {section}{Bitmap/B\'{e}zier curves/Quadratic}{125}{chapter.4}
\contentsline {section}{Bitmap/Bresenham's line algorithm}{126}{chapter.4}
\contentsline {section}{Bitmap/Flood fill}{127}{chapter.4}
\contentsline {section}{Bitmap/Histogram}{129}{chapter.4}
\contentsline {section}{Bitmap/Midpoint circle algorithm}{130}{chapter.4}
\contentsline {section}{Bitmap/PPM conversion through a pipe}{131}{chapter.4}
\contentsline {section}{Bitmap/Read a PPM file}{132}{chapter.4}
\contentsline {section}{Bitmap/Read an image through a pipe}{133}{chapter.4}
\contentsline {section}{Bitmap/Write a PPM file}{134}{chapter.4}
\contentsline {section}{Bitwise IO}{135}{chapter.4}
\contentsline {section}{Bitwise operations}{137}{chapter.4}
\contentsline {section}{Boolean values}{139}{chapter.4}
\contentsline {section}{Boxing the compass}{140}{chapter.4}
\contentsline {section}{Break OO privacy}{143}{Item.32}
\contentsline {section}{Brownian tree}{145}{Item.32}
\contentsline {section}{Bulls and cows/Player}{146}{Item.35}
\contentsline {chapter}{\numberline {5}Rosetta Code Tasks starting with C}{149}{chapter.5}
\contentsline {section}{Caesar cipher}{149}{chapter.5}
\contentsline {section}{Calendar}{151}{chapter.5}
\contentsline {section}{Calendar - for "real" programmers}{153}{chapter.5}
\contentsline {section}{Call a foreign-language function}{155}{chapter.5}
\contentsline {section}{Call a function}{158}{chapter.5}
\contentsline {section}{Call a function from a foreign language}{160}{chapter.5}
\contentsline {section}{Call a function in a shared library}{162}{chapter.5}
\contentsline {section}{Call an object method}{164}{chapter.5}
\contentsline {section}{Case-sensitivity of identifiers}{165}{chapter.5}
\contentsline {section}{Catalan numbers}{166}{chapter.5}
\contentsline {section}{Character codes}{168}{figure.caption.21}
\contentsline {section}{Character matching}{169}{figure.caption.22}
\contentsline {section}{Chat server}{171}{Item.40}
\contentsline {section}{Checkpoint synchronization}{173}{Item.40}
\contentsline {section}{Chess player}{176}{Item.40}
\contentsline {section}{Cholesky decomposition}{193}{Item.40}
\contentsline {section}{Classes}{197}{figure.caption.31}
\contentsline {section}{Closest-pair problem}{198}{figure.caption.31}
\contentsline {section}{Closures/Variable capture}{201}{figure.caption.31}
\contentsline {section}{Collections}{202}{figure.caption.31}
\contentsline {section}{Color of a screen pixel}{203}{figure.caption.31}
\contentsline {section}{Colour bars/Display}{204}{figure.caption.31}
\contentsline {section}{Colour pinstripe/Display}{205}{figure.caption.31}
\contentsline {section}{Colour pinstripe/Printer}{206}{figure.caption.31}
\contentsline {section}{Combinations}{208}{figure.caption.31}
\contentsline {section}{Combinations with repetitions}{209}{figure.caption.31}
\contentsline {section}{Command-line arguments}{211}{figure.caption.31}
\contentsline {section}{Comments}{213}{figure.caption.31}
\contentsline {section}{Compile-time calculation}{214}{figure.caption.31}
\contentsline {section}{Compound data type}{215}{figure.caption.31}
\contentsline {section}{Concurrent computing}{216}{figure.caption.31}
\contentsline {section}{Conditional structures}{217}{figure.caption.31}
\contentsline {section}{Constrained Random Points on a Circle}{219}{figure.caption.31}
\contentsline {section}{Constrained genericity}{221}{figure.caption.31}
\contentsline {section}{Conway's Game of Life}{223}{figure.caption.31}
\contentsline {section}{Copy a string}{226}{figure.caption.31}
\contentsline {section}{Count occurrences of a substring}{227}{figure.caption.31}
\contentsline {section}{Count the Coins}{228}{figure.caption.31}
\contentsline {section}{Counting in Factors}{230}{figure.caption.31}
\contentsline {section}{Counting in octal}{232}{figure.caption.31}
\contentsline {section}{Create a file}{233}{figure.caption.31}
\contentsline {section}{Create a two-dimensional array at runtime}{234}{figure.caption.31}
\contentsline {section}{Create an HTML table}{235}{figure.caption.31}
\contentsline {section}{Create an object at a given address}{236}{figure.caption.31}
\contentsline {section}{CSV to HTML translation}{237}{figure.caption.31}
\contentsline {chapter}{\numberline {6}Rosetta Code Tasks starting with D}{239}{chapter.6}
\contentsline {section}{Date format}{239}{chapter.6}
\contentsline {section}{Date manipulation}{240}{chapter.6}
\contentsline {section}{Day of the week}{241}{chapter.6}
\contentsline {section}{Deal cards for FreeCell}{242}{chapter.6}
\contentsline {section}{Decision tables}{245}{Item.44}
\contentsline {section}{Deconvolution/1D}{248}{Item.44}
\contentsline {section}{Deepcopy}{251}{figure.caption.35}
\contentsline {section}{Define a primitive data type}{254}{figure.caption.35}
\contentsline {section}{Delegates}{256}{figure.caption.35}
\contentsline {section}{Delete a file}{258}{figure.caption.35}
\contentsline {section}{Detect division by zero}{259}{figure.caption.35}
\contentsline {section}{Determine if a string is numeric}{260}{figure.caption.35}
\contentsline {section}{Determine if only one instance is running}{261}{figure.caption.35}
\contentsline {section}{Digital root}{262}{figure.caption.35}
\contentsline {section}{Dijkstra's algorithm}{263}{figure.caption.35}
\contentsline {section}{Dinesman's multiple-dwelling problem}{266}{table.caption.37}
\contentsline {section}{Dining philosophers}{268}{table.caption.37}
\contentsline {section}{Discordian date}{271}{table.caption.37}
\contentsline {section}{Distributed programming}{272}{table.caption.37}
\contentsline {section}{DNS query}{273}{table.caption.37}
\contentsline {section}{Documentation}{274}{table.caption.37}
\contentsline {section}{Dot product}{275}{table.caption.37}
\contentsline {section}{Doubly-linked list/Definition}{276}{table.caption.37}
\contentsline {section}{Doubly-linked list/Element definition}{277}{table.caption.37}
\contentsline {section}{Doubly-linked list/Element insertion}{278}{table.caption.37}
\contentsline {section}{Doubly-linked list/Traversal}{279}{table.caption.37}
\contentsline {section}{Dragon curve}{280}{table.caption.37}
\contentsline {section}{Draw a clock}{282}{table.caption.37}
\contentsline {section}{Draw a cuboid}{285}{Item.51}
\contentsline {section}{Draw a sphere}{289}{Item.51}
\contentsline {section}{Dutch national flag problem}{290}{Item.51}
\contentsline {section}{Dynamic variable names}{291}{Item.54}
\contentsline {chapter}{\numberline {7}Rosetta Code Tasks starting with E}{293}{chapter.7}
\contentsline {section}{EBNF parser}{293}{chapter.7}
\contentsline {section}{Echo server}{295}{chapter.7}
\contentsline {section}{Element-wise operations}{296}{chapter.7}
\contentsline {section}{Empty program}{297}{chapter.7}
\contentsline {section}{Empty string}{298}{chapter.7}
\contentsline {section}{Ensure that a file exists}{299}{chapter.7}
\contentsline {section}{Enumerations}{300}{chapter.7}
\contentsline {section}{Environment variables}{301}{chapter.7}
\contentsline {section}{Equilibrium index}{302}{chapter.7}
\contentsline {section}{Ethiopian multiplication}{303}{chapter.7}
\contentsline {section}{Euler Method}{305}{Item.62}
\contentsline {section}{Evaluate binomial coefficients}{309}{figure.caption.46}
\contentsline {section}{Even or odd}{310}{figure.caption.47}
\contentsline {section}{Events}{311}{figure.caption.47}
\contentsline {section}{Evolutionary algorithm}{312}{figure.caption.47}
\contentsline {section}{Exceptions}{314}{figure.caption.47}
\contentsline {section}{Exceptions/Catch an exception thrown in a nested call}{315}{figure.caption.47}
\contentsline {section}{Executable library}{316}{Item.67}
\contentsline {section}{Execute Brain****}{318}{Item.67}
\contentsline {section}{Execute HQ9+}{321}{Item.67}
\contentsline {section}{Execute a Markov algorithm}{322}{Item.67}
\contentsline {section}{Execute a system command}{324}{Item.67}
\contentsline {section}{Exponentiation operator}{325}{Item.67}
\contentsline {section}{Extend your language}{326}{Item.67}
\contentsline {section}{Extreme floating point values}{328}{Item.67}
\contentsline {chapter}{\numberline {8}Rosetta Code Tasks starting with F}{329}{chapter.8}
\contentsline {section}{Factorial}{329}{chapter.8}
\contentsline {section}{Factors of a Mersenne number}{330}{chapter.8}
\contentsline {section}{Factors of an integer}{333}{chapter.8}
\contentsline {section}{Fast Fourier transform}{334}{chapter.8}
\contentsline {section}{Fibonacci n-step number sequences}{336}{chapter.8}
\contentsline {section}{Fibonacci sequence}{339}{Item.73}
\contentsline {section}{File IO}{341}{Item.73}
\contentsline {section}{File modification time}{342}{Item.73}
\contentsline {section}{File size}{343}{Item.73}
\contentsline {section}{Filter}{344}{Item.73}
\contentsline {section}{Find Common Directory Path}{345}{Item.73}
\contentsline {section}{Find first and last set bit of a long integer}{346}{Item.73}
\contentsline {section}{Find limit of recursion}{348}{Item.78}
\contentsline {section}{Find the missing permutation}{349}{Item.78}
\contentsline {section}{First class environments}{351}{Item.78}
\contentsline {section}{First-class functions}{353}{Item.78}
\contentsline {section}{First-class functions/Use numbers analogously}{355}{Item.78}
\contentsline {section}{Five weekends}{357}{Item.78}
\contentsline {section}{FizzBuzz}{359}{Item.81}
\contentsline {section}{Flatten a list}{360}{Item.81}
\contentsline {section}{Flow-control structures}{361}{Item.81}
\contentsline {section}{Floyd's triangle}{363}{Item.81}
\contentsline {section}{Forest fire}{365}{Item.83}
\contentsline {section}{Fork}{367}{Item.87}
\contentsline {section}{Formal power series}{368}{Item.87}
\contentsline {section}{Formatted numeric output}{371}{figure.caption.55}
\contentsline {section}{Forward difference}{372}{figure.caption.55}
\contentsline {section}{Four bit adder}{373}{figure.caption.56}
\contentsline {section}{Fractal tree}{375}{table.caption.57}
\contentsline {section}{Function composition}{376}{Item.90}
\contentsline {section}{Function definition}{377}{Item.90}
\contentsline {section}{Function frequency}{378}{Item.90}
\contentsline {chapter}{\numberline {9}Rosetta Code Tasks starting with G}{381}{chapter.9}
\contentsline {section}{GUI component interaction}{381}{chapter.9}
\contentsline {section}{GUI enabling/disabling of controls}{383}{chapter.9}
\contentsline {section}{Galton box animation}{384}{chapter.9}
\contentsline {section}{Gamma function}{387}{figure.caption.58}
\contentsline {section}{Generator}{389}{figure.caption.59}
\contentsline {section}{Generic swap}{391}{Item.96}
\contentsline {section}{Globally replace text in several files}{392}{Item.96}
\contentsline {section}{Go Fish}{393}{Item.96}
\contentsline {section}{Gray code}{397}{Item.96}
\contentsline {section}{Grayscale image}{399}{Item.96}
\contentsline {section}{Greatest common divisor}{401}{Item.96}
\contentsline {section}{Greatest element of a list}{402}{Item.96}
\contentsline {section}{Greatest subsequential sum}{403}{Item.96}
\contentsline {section}{Greyscale bars/Display}{404}{Item.96}
\contentsline {section}{Guess the number}{405}{Item.96}
\contentsline {section}{Guess the number/With Feedback}{406}{Item.96}
\contentsline {section}{Guess the number/With Feedback (Player)}{407}{Item.96}
\contentsline {chapter}{\numberline {10}Rosetta Code Tasks starting with H}{409}{chapter.10}
\contentsline {section}{HTTP}{409}{chapter.10}
\contentsline {section}{HTTPS}{410}{chapter.10}
\contentsline {section}{HTTPS/Authenticated}{411}{chapter.10}
\contentsline {section}{HTTPS/Client-authenticated}{412}{chapter.10}
\contentsline {section}{Hailstone sequence}{413}{chapter.10}
\contentsline {section}{Hamming numbers}{414}{Item.99}
\contentsline {section}{Handle a signal}{415}{Item.105}
\contentsline {section}{Happy numbers}{416}{Item.105}
\contentsline {section}{Hash from two arrays}{417}{Item.105}
\contentsline {section}{Haversine formula}{418}{Item.105}
\contentsline {section}{Hello world/Graphical}{419}{Item.105}
\contentsline {section}{Hello world/Line printer}{420}{Item.105}
\contentsline {section}{Hello world/Newline omission}{421}{Item.105}
\contentsline {section}{Hello world/Standard error}{422}{Item.105}
\contentsline {section}{Hello world/Text}{423}{Item.105}
\contentsline {section}{Hello world/Web server}{424}{Item.105}
\contentsline {section}{Here document}{425}{Item.105}
\contentsline {section}{Higher-order functions}{426}{Item.105}
\contentsline {section}{History variables}{427}{Item.105}
\contentsline {section}{Hofstadter Figure-Figure sequences}{429}{Item.105}
\contentsline {section}{Hofstadter Q sequence}{431}{Item.109}
\contentsline {section}{Hofstadter-Conway \$10,000 sequence}{433}{figure.caption.61}
\contentsline {section}{Holidays related to Easter}{437}{Item.112}
\contentsline {section}{Horizontal sundial calculations}{439}{Item.112}
\contentsline {section}{Horner's rule for polynomial evaluation}{441}{Item.112}
\contentsline {section}{Host introspection}{442}{figure.caption.65}
\contentsline {section}{Hostname}{443}{figure.caption.65}
\contentsline {section}{Huffman coding}{444}{figure.caption.65}
\contentsline {chapter}{\numberline {11}Rosetta Code Tasks starting with I}{447}{chapter.11}
\contentsline {section}{IPC via named pipe}{447}{chapter.11}
\contentsline {section}{Identity matrix}{449}{Item.120}
\contentsline {section}{Image convolution}{450}{figure.caption.67}
\contentsline {section}{Image Noise}{452}{figure.caption.68}
\contentsline {section}{Include a file}{454}{figure.caption.69}
\contentsline {section}{Increment a numerical string}{455}{figure.caption.69}
\contentsline {section}{Infinity}{456}{figure.caption.69}
\contentsline {section}{Inheritance/Multiple}{457}{figure.caption.69}
\contentsline {section}{Inheritance/Single}{458}{figure.caption.69}
\contentsline {section}{Input loop}{460}{figure.caption.69}
\contentsline {section}{Integer comparison}{461}{figure.caption.69}
\contentsline {section}{Integer sequence}{462}{figure.caption.69}
\contentsline {section}{Interactive programming}{463}{figure.caption.69}
\contentsline {section}{Introspection}{464}{figure.caption.69}
\contentsline {section}{Inverted index}{465}{figure.caption.69}
\contentsline {section}{Inverted syntax}{467}{figure.caption.69}
\contentsline {chapter}{\numberline {12}Rosetta Code Tasks starting with J}{469}{chapter.12}
\contentsline {section}{JSON}{469}{chapter.12}
\contentsline {section}{Jensen's Device}{472}{chapter.12}
\contentsline {section}{Joystick position}{474}{chapter.12}
\contentsline {section}{Jump anywhere}{476}{chapter.12}
\contentsline {chapter}{\numberline {13}Rosetta Code Tasks starting with K}{479}{chapter.13}
\contentsline {section}{Kaprekar numbers}{479}{chapter.13}
\contentsline {section}{Keyboard macros}{481}{chapter.13}
\contentsline {section}{Knapsack problem/0-1}{482}{chapter.13}
\contentsline {section}{Knapsack problem/Bounded}{485}{table.caption.70}
\contentsline {section}{Knapsack problem/Continuous}{488}{table.caption.71}
\contentsline {section}{Knapsack problem/Unbounded}{490}{table.caption.72}
\contentsline {section}{Knight's tour}{492}{Item.121}
\contentsline {section}{Knuth's algorithm S}{494}{Item.121}
\contentsline {section}{Knuth shuffle}{496}{Item.129}
\contentsline {chapter}{\numberline {14}Rosetta Code Tasks starting with L}{497}{chapter.14}
\contentsline {section}{LZW compression}{497}{chapter.14}
\contentsline {section}{Last Fridays of year}{499}{chapter.14}
\contentsline {section}{Last letter-first letter}{501}{chapter.14}
\contentsline {section}{Leap year}{503}{chapter.14}
\contentsline {section}{Least common multiple}{504}{chapter.14}
\contentsline {section}{Letter frequency}{505}{figure.caption.74}
\contentsline {section}{Levenshtein distance}{506}{figure.caption.74}
\contentsline {section}{Linear congruential generator}{508}{Item.132}
\contentsline {section}{List comprehensions}{510}{Item.132}
\contentsline {section}{Literals/Floating point}{513}{Item.135}
\contentsline {section}{Literals/Integer}{514}{Item.135}
\contentsline {section}{Literals/String}{515}{Item.135}
\contentsline {section}{Logical operations}{516}{Item.135}
\contentsline {section}{Long multiplication}{517}{Item.135}
\contentsline {section}{Longest common subsequence}{518}{Item.135}
\contentsline {section}{Longest string challenge}{519}{Item.135}
\contentsline {section}{Look-and-say sequence}{523}{Item.135}
\contentsline {section}{Loop over multiple arrays simultaneously}{525}{Item.135}
\contentsline {section}{Loops/Break}{526}{Item.135}
\contentsline {section}{Loops/Continue}{527}{Item.135}
\contentsline {section}{Loops/Do-while}{528}{Item.135}
\contentsline {section}{Loops/Downward for}{529}{Item.135}
\contentsline {section}{Loops/For}{530}{Item.135}
\contentsline {section}{Loops/For with a specified step}{531}{Item.135}
\contentsline {section}{Loops/Foreach}{532}{Item.135}
\contentsline {section}{Loops/Infinite}{533}{Item.135}
\contentsline {section}{Loops/N plus one half}{534}{Item.135}
\contentsline {section}{Loops/Nested}{535}{Item.135}
\contentsline {section}{Loops/While}{536}{Item.135}
\contentsline {section}{Lucas-Lehmer test}{537}{Item.135}
\contentsline {section}{Luhn test of credit card numbers}{539}{Item.135}
\contentsline {chapter}{\numberline {15}Rosetta Code Tasks starting with M}{541}{chapter.15}
\contentsline {section}{MD5}{541}{chapter.15}
\contentsline {section}{MD5/Implementation}{542}{chapter.15}
\contentsline {section}{Make a backup file}{547}{chapter.15}
\contentsline {section}{Man or boy test}{548}{chapter.15}
\contentsline {section}{Mandelbrot set}{551}{table.caption.75}
\contentsline {section}{Map range}{552}{table.caption.75}
\contentsline {section}{Matrix multiplication}{553}{figure.caption.76}
\contentsline {section}{Matrix transposition}{554}{figure.caption.76}
\contentsline {section}{Matrix-exponentiation operator}{555}{figure.caption.76}
\contentsline {section}{Maze generation}{556}{figure.caption.76}
\contentsline {section}{Maze solving}{559}{Item.143}
\contentsline {section}{Median filter}{561}{Item.143}
\contentsline {section}{Memory allocation}{562}{Item.143}
\contentsline {section}{Memory layout of a data structure}{563}{Item.143}
\contentsline {section}{Menu}{565}{Item.143}
\contentsline {section}{Metaprogramming}{566}{Item.143}
\contentsline {section}{Metered concurrency}{567}{Item.143}
\contentsline {section}{Metronome}{568}{Item.143}
\contentsline {section}{Miller-Rabin primality test}{569}{Item.143}
\contentsline {section}{Minesweeper game}{572}{Item.143}
\contentsline {section}{Modular exponentiation}{575}{Item.143}
\contentsline {section}{Monte Carlo methods}{576}{Item.143}
\contentsline {section}{Monty Hall problem}{577}{Item.143}
\contentsline {section}{Morse code}{579}{Item.143}
\contentsline {section}{Mouse position}{581}{Item.143}
\contentsline {section}{Multiline shebang}{582}{Item.143}
\contentsline {section}{Multiple distinct objects}{583}{Item.143}
\contentsline {section}{Multiple regression}{584}{Item.143}
\contentsline {section}{Multiplication tables}{587}{figure.caption.79}
\contentsline {section}{Multisplit}{588}{figure.caption.79}
\contentsline {section}{Mutex}{590}{figure.caption.79}
\contentsline {section}{Mutual recursion}{591}{figure.caption.79}
\contentsline {chapter}{\numberline {16}Rosetta Code Tasks starting with N}{593}{chapter.16}
\contentsline {section}{N-queens problem}{593}{chapter.16}
\contentsline {section}{Named parameters}{595}{chapter.16}
\contentsline {section}{Narcissist}{597}{chapter.16}
\contentsline {section}{Natural sorting}{598}{chapter.16}
\contentsline {section}{Non-continuous subsequences}{606}{Item.151}
\contentsline {section}{Non-decimal radices/Convert}{607}{Item.151}
\contentsline {section}{Non-decimal radices/Input}{609}{Item.151}
\contentsline {section}{Non-decimal radices/Output}{610}{Item.151}
\contentsline {section}{Nth root}{611}{Item.151}
\contentsline {section}{Number names}{612}{Item.151}
\contentsline {section}{Number reversal game}{613}{Item.151}
\contentsline {section}{Numeric error propagation}{614}{Item.151}
\contentsline {section}{Numerical integration}{619}{Item.154}
\contentsline {chapter}{\numberline {17}Rosetta Code Tasks starting with O}{621}{chapter.17}
\contentsline {section}{Object serialization}{621}{chapter.17}
\contentsline {section}{Odd word problem}{623}{chapter.17}
\contentsline {section}{Old lady swalllowed a fly}{625}{Item.157}
\contentsline {section}{One of n lines in a file}{627}{Item.157}
\contentsline {section}{One-dimensional cellular automata}{629}{Item.160}
\contentsline {section}{OpenGL}{631}{Item.160}
\contentsline {section}{Optional parameters}{633}{figure.caption.81}
\contentsline {section}{Order two numerical lists}{635}{figure.caption.81}
\contentsline {section}{Ordered Partitions}{636}{figure.caption.81}
\contentsline {section}{Ordered words}{638}{figure.caption.82}
\contentsline {chapter}{\numberline {18}Rosetta Code Tasks starting with P}{639}{chapter.18}
\contentsline {section}{Palindrome detection}{639}{chapter.18}
\contentsline {section}{Pangram checker}{641}{chapter.18}
\contentsline {section}{Parallel calculations}{642}{chapter.18}
\contentsline {section}{Parametric polymorphism}{644}{chapter.18}
\contentsline {section}{Parametrized SQL statement}{647}{chapter.18}
\contentsline {section}{Parse an IP Address}{648}{chapter.18}
\contentsline {section}{Parsing command-line arguments}{651}{table.caption.83}
\contentsline {section}{Parsing/RPN calculator algorithm}{652}{table.caption.83}
\contentsline {section}{Parsing/RPN to infix conversion}{654}{table.caption.83}
\contentsline {section}{Parsing/Shunting-yard algorithm}{657}{table.caption.85}
\contentsline {section}{Partial function application}{660}{table.caption.86}
\contentsline {section}{Pascal's triangle}{662}{table.caption.86}
\contentsline {section}{Pascal's triangle/Puzzle}{663}{table.caption.86}
\contentsline {section}{Pattern matching}{665}{table.caption.86}
\contentsline {section}{Percentage difference between images}{667}{table.caption.86}
\contentsline {section}{Perfect numbers}{669}{table.caption.87}
\contentsline {section}{Permutation test}{670}{table.caption.87}
\contentsline {section}{Permutations}{673}{table.caption.88}
\contentsline {section}{Permutations/Derangements}{674}{table.caption.88}
\contentsline {section}{Pi}{676}{Item.164}
\contentsline {section}{Pick random element}{677}{Item.164}
\contentsline {section}{Pinstripe/Display}{678}{Item.164}
\contentsline {section}{Pinstripe/Printer}{679}{Item.164}
\contentsline {section}{Play recorded sounds}{680}{Item.164}
\contentsline {section}{Playing cards}{681}{Item.164}
\contentsline {section}{Plot coordinate pairs}{682}{Item.164}
\contentsline {section}{Pointers and references}{684}{figure.caption.89}
\contentsline {section}{Polynomial long division}{686}{figure.caption.89}
\contentsline {section}{Polymorphic copy}{690}{figure.caption.89}
\contentsline {section}{Polymorphism}{692}{figure.caption.89}
\contentsline {section}{Power set}{693}{figure.caption.89}
\contentsline {section}{Pragmatic directives}{694}{figure.caption.89}
\contentsline {section}{Price Fraction}{695}{figure.caption.89}
\contentsline {section}{Primality by trial division}{697}{figure.caption.89}
\contentsline {section}{Prime decomposition}{698}{figure.caption.89}
\contentsline {section}{Priority queue}{699}{figure.caption.89}
\contentsline {section}{Probabilistic choice}{701}{Item.166}
\contentsline {section}{Program termination}{703}{Item.166}
\contentsline {section}{Pythagorean triples}{704}{Item.166}
\contentsline {chapter}{\numberline {19}Rosetta Code Tasks starting with Q}{707}{chapter.19}
\contentsline {section}{Queue/Definition}{707}{chapter.19}
\contentsline {section}{Queue/Usage}{709}{chapter.19}
\contentsline {section}{Quine}{710}{chapter.19}
\contentsline {chapter}{\numberline {20}Rosetta Code Tasks starting with R}{713}{chapter.20}
\contentsline {section}{RSA code}{713}{chapter.20}
\contentsline {section}{Random number generator (device)}{716}{figure.caption.92}
\contentsline {section}{Random number generator (included)}{717}{figure.caption.92}
\contentsline {section}{Random numbers}{718}{figure.caption.92}
\contentsline {section}{Range expansion}{719}{figure.caption.92}
\contentsline {section}{Range extraction}{720}{figure.caption.92}
\contentsline {section}{Rate counter}{722}{figure.caption.92}
\contentsline {section}{Ray-casting algorithm}{724}{figure.caption.92}
\contentsline {section}{Read a configuration file}{730}{figure.caption.95}
\contentsline {section}{Read a specific line from a file}{732}{figure.caption.95}
\contentsline {section}{Read entire file}{733}{figure.caption.95}
\contentsline {section}{Read a file line by line}{734}{figure.caption.95}
\contentsline {section}{Real constants and functions}{735}{figure.caption.95}
\contentsline {section}{Record sound}{737}{figure.caption.95}
\contentsline {section}{Reduced row echelon form}{738}{figure.caption.95}
\contentsline {section}{Regular expressions}{740}{figure.caption.95}
\contentsline {section}{Remote agent/Agent interface}{741}{figure.caption.95}
\contentsline {section}{Remote agent/Agent logic}{742}{figure.caption.95}
\contentsline {section}{Remote agent/Simulation}{748}{figure.caption.95}
\contentsline {section}{Remove duplicate elements}{752}{figure.caption.95}
\contentsline {section}{Remove lines from a file}{753}{figure.caption.95}
\contentsline {section}{Remove the first and last characters from a string/Top and tail}{754}{figure.caption.95}
\contentsline {section}{Rename a file}{755}{figure.caption.95}
\contentsline {section}{Rendezvous}{756}{figure.caption.95}
\contentsline {section}{Repeat a string}{758}{figure.caption.95}
\contentsline {section}{Respond to an unknown method call}{759}{figure.caption.95}
\contentsline {section}{Return multiple values}{760}{figure.caption.95}
\contentsline {section}{Reverse a string}{761}{figure.caption.95}
\contentsline {section}{Rock-paper-scissors}{762}{figure.caption.95}
\contentsline {section}{Roman numerals/Encode}{763}{figure.caption.95}
\contentsline {section}{Roman numerals/Decode}{764}{figure.caption.95}
\contentsline {section}{Roots of a function}{765}{figure.caption.95}
\contentsline {section}{Roots of a quadratic function}{766}{figure.caption.95}
\contentsline {section}{Roots of unity}{768}{figure.caption.95}
\contentsline {section}{Rosetta Code/Count examples}{769}{figure.caption.95}
\contentsline {section}{Rosetta Code/Find unimplemented tasks}{770}{figure.caption.95}
\contentsline {section}{Rosetta Code/Fix code tags}{771}{figure.caption.95}
\contentsline {section}{Rosetta Code/Rank languages by popularity}{772}{figure.caption.95}
\contentsline {section}{Rot-13}{774}{figure.caption.95}
\contentsline {section}{Run as a daemon or service}{775}{figure.caption.95}
\contentsline {section}{Run-length encoding}{776}{figure.caption.95}
\contentsline {section}{Runtime evaluation}{778}{figure.caption.95}
\contentsline {section}{Runtime evaluation/In an environment}{779}{figure.caption.95}
\contentsline {chapter}{\numberline {21}Rosetta Code Tasks starting with S}{781}{chapter.21}
\contentsline {section}{S-Expressions}{781}{chapter.21}
\contentsline {section}{SEDOLs}{784}{chapter.21}
\contentsline {section}{SHA-1}{786}{chapter.21}
\contentsline {section}{Safe addition}{787}{chapter.21}
\contentsline {section}{Same Fringe}{788}{chapter.21}
\contentsline {section}{Scope modifiers}{790}{chapter.21}
\contentsline {section}{Script name}{792}{chapter.21}
\contentsline {section}{Scripted Main}{793}{chapter.21}
\contentsline {section}{Search a list}{794}{chapter.21}
\contentsline {section}{Secure temporary file}{795}{chapter.21}
\contentsline {section}{Self-describing numbers}{796}{chapter.21}
\contentsline {section}{Self-referential sequence}{797}{Item.168}
\contentsline {section}{Send an unknown method call}{800}{Item.168}
\contentsline {section}{Send email}{801}{Item.168}
\contentsline {section}{Sequence of non-squares}{802}{Item.168}
\contentsline {section}{Set}{804}{Item.168}
\contentsline {section}{Set consolidation}{808}{Item.168}
\contentsline {section}{Seven-sided dice from five-sided dice}{810}{Item.168}
\contentsline {section}{Shell one-liner}{811}{Item.168}
\contentsline {section}{Short-circuit evaluation}{812}{Item.168}
\contentsline {section}{Show the epoch}{814}{Item.168}
\contentsline {section}{Sierpinski carpet}{815}{Item.168}
\contentsline {section}{Sierpinski triangle}{817}{Item.168}
\contentsline {section}{Sieve of Eratosthenes}{818}{Item.168}
\contentsline {section}{Simple database}{819}{Item.168}
\contentsline {section}{Simple quaternion type and operations}{822}{Item.168}
\contentsline {section}{Simple windowed application}{826}{Item.176}
\contentsline {section}{Simulate input/Keyboard}{827}{Item.176}
\contentsline {section}{Simulate input/Mouse}{828}{Item.176}
\contentsline {section}{Singleton}{829}{Item.176}
\contentsline {section}{Singly-linked list/Element definition}{830}{Item.176}
\contentsline {section}{Singly-linked list/Element insertion}{831}{Item.176}
\contentsline {section}{Singly-linked list/Traversal}{832}{Item.176}
\contentsline {section}{Sleep}{833}{Item.176}
\contentsline {section}{Sockets}{834}{Item.176}
\contentsline {section}{Sokoban}{835}{Item.176}
\contentsline {section}{Solve a Hidato puzzle}{839}{Item.176}
\contentsline {section}{Sort an array of composite structures}{843}{figure.caption.97}
\contentsline {section}{Sort an integer array}{844}{figure.caption.97}
\contentsline {section}{Sort disjoint sublist}{845}{figure.caption.97}
\contentsline {section}{Sort stability}{846}{figure.caption.97}
\contentsline {section}{Sort using a custom comparator}{847}{Item.179}
\contentsline {section}{Sorting algorithms/Bead sort}{848}{Item.179}
\contentsline {section}{Sorting algorithms/Bogosort}{849}{Item.179}
\contentsline {section}{Sorting algorithms/Bubble sort}{850}{Item.179}
\contentsline {section}{Sorting algorithms/Cocktail sort}{852}{Item.179}
\contentsline {section}{Sorting algorithms/Comb sort}{854}{Item.179}
\contentsline {section}{Sorting algorithms/Counting sort}{856}{Item.179}
\contentsline {section}{Sorting algorithms/Gnome sort}{858}{Item.179}
\contentsline {section}{Sorting algorithms/Heapsort}{859}{Item.179}
\contentsline {section}{Sorting algorithms/Insertion sort}{862}{Item.179}
\contentsline {section}{Sorting algorithms/Pancake sort}{863}{Item.179}
\contentsline {section}{Sorting algorithms/Permutation sort}{865}{Item.179}
\contentsline {section}{Sorting algorithms/Radix sort}{866}{Item.179}
\contentsline {section}{Sorting algorithms/Selection sort}{867}{Item.179}
\contentsline {section}{Sorting algorithms/Shell sort}{868}{Item.179}
\contentsline {section}{Sorting algorithms/Sleep sort}{869}{Item.179}
\contentsline {section}{Sorting algorithms/Stooge sort}{871}{Item.179}
\contentsline {section}{Sorting algorithms/Strand sort}{872}{Item.179}
\contentsline {section}{Soundex}{873}{Item.179}
\contentsline {section}{Special variables}{874}{Item.179}
\contentsline {section}{Speech synthesis}{875}{Item.179}
\contentsline {section}{Special characters}{876}{Item.179}
\contentsline {section}{Spiral matrix}{877}{Item.179}
\contentsline {section}{Stable marriage problem}{878}{Item.179}
\contentsline {section}{Stack}{882}{Item.184}
\contentsline {section}{Stack traces}{884}{Item.184}
\contentsline {section}{Stair-climbing puzzle}{887}{Item.184}
\contentsline {section}{Standard deviation}{888}{Item.184}
\contentsline {section}{State name puzzle}{889}{Item.184}
\contentsline {section}{Statistics/Basic}{892}{Item.184}
\contentsline {section}{Stem-and-leaf plot}{895}{figure.caption.98}
\contentsline {section}{Straddling checkerboard}{897}{figure.caption.98}
\contentsline {section}{String case}{899}{figure.caption.98}
\contentsline {section}{String concatenation}{900}{figure.caption.98}
\contentsline {section}{String interpolation (included)}{901}{figure.caption.98}
\contentsline {section}{String length}{902}{Item.186}
\contentsline {section}{Strip a set of characters from a string}{903}{Item.186}
\contentsline {section}{Strip block comments}{904}{Item.186}
\contentsline {section}{Strip comments from a string}{906}{Item.186}
\contentsline {section}{Strip control codes and extended characters from a string}{907}{Item.186}
\contentsline {section}{Strip whitespace from a string/Top and tail}{909}{Item.186}
\contentsline {section}{Subset sum problem}{910}{Item.186}
\contentsline {section}{Substring}{913}{table.caption.99}
\contentsline {section}{Subtractive generator}{915}{table.caption.99}
\contentsline {section}{Sudoku}{918}{Item.191}
\contentsline {section}{Sum and product of an array}{921}{Item.191}
\contentsline {section}{Sum digits of an integer}{922}{Item.191}
\contentsline {section}{Sum of a series}{923}{Item.191}
\contentsline {section}{Sum of squares}{924}{Item.191}
\contentsline {section}{Symmetric difference}{925}{Item.191}
\contentsline {section}{Synchronous concurrency}{927}{Item.193}
\contentsline {section}{System time}{929}{Item.193}
\contentsline {chapter}{\numberline {22}Rosetta Code Tasks starting with T}{931}{chapter.22}
\contentsline {section}{Table creation}{931}{chapter.22}
\contentsline {section}{Table creation/Postal addresses}{933}{chapter.22}
\contentsline {section}{Take notes on the command line}{935}{chapter.22}
\contentsline {section}{Terminal Control/Dimensions}{936}{chapter.22}
\contentsline {section}{Terminal control/Coloured text}{937}{chapter.22}
\contentsline {section}{Terminal control/Cursor movement}{938}{chapter.22}
\contentsline {section}{Terminal control/Preserve screen}{939}{chapter.22}
\contentsline {section}{Terminal Control/Unicode output}{940}{chapter.22}
\contentsline {section}{Ternary logic}{941}{chapter.22}
\contentsline {section}{Test a function}{947}{table.caption.101}
\contentsline {section}{Text processing/1}{948}{table.caption.101}
\contentsline {section}{Text processing/2}{951}{table.caption.101}
\contentsline {section}{Text processing/3}{953}{Item.196}
\contentsline {section}{Thiele's interpolation formula}{954}{Item.196}
\contentsline {section}{Three Dogs}{957}{Item.199}
\contentsline {section}{Tic-tac-toe}{958}{Item.199}
\contentsline {section}{Time a function}{961}{Item.199}
\contentsline {section}{Top rank per group}{962}{Item.199}
\contentsline {section}{Topological sort}{964}{Item.199}
\contentsline {section}{Towers of Hanoi}{966}{Item.199}
\contentsline {section}{Trabb Pardo–Knuth algorithm}{967}{Item.199}
\contentsline {section}{Tree traversal}{969}{Item.206}
\contentsline {section}{Trigonometric functions}{971}{Item.206}
\contentsline {section}{Truncatable primes}{972}{Item.206}
\contentsline {section}{Truncate a file}{973}{Item.206}
\contentsline {section}{Truth table}{974}{Item.206}
\contentsline {chapter}{\numberline {23}Rosetta Code Tasks starting with U}{977}{chapter.23}
\contentsline {section}{URL decoding}{977}{chapter.23}
\contentsline {section}{URL encoding}{978}{chapter.23}
\contentsline {section}{Unbias a random generator}{980}{chapter.23}
\contentsline {section}{Undefined values}{982}{chapter.23}
\contentsline {section}{Unicode strings}{983}{chapter.23}
\contentsline {section}{Unicode variable names}{984}{chapter.23}
\contentsline {section}{Update a configuration file}{985}{Item.211}
\contentsline {section}{User input/Graphical}{989}{Item.211}
\contentsline {section}{User input/Text}{990}{Item.211}
\contentsline {chapter}{\numberline {24}Rosetta Code Tasks starting with V}{991}{chapter.24}
\contentsline {section}{Van der Corput sequence}{991}{chapter.24}
\contentsline {section}{Variable size/Get}{995}{figure.caption.110}
\contentsline {section}{Variable size/Set}{996}{figure.caption.110}
\contentsline {section}{Variable-length quantity}{997}{figure.caption.110}
\contentsline {section}{Variables}{998}{figure.caption.110}
\contentsline {section}{Variadic function}{999}{figure.caption.110}
\contentsline {section}{Vector products}{1000}{figure.caption.110}
\contentsline {section}{Verify distribution uniformity/Naive}{1002}{Item.219}
\contentsline {section}{Vigenère Cipher}{1004}{Item.219}
\contentsline {chapter}{\numberline {25}Rosetta Code Tasks starting with W}{1005}{chapter.25}
\contentsline {section}{Walk a directory/Non-recursively}{1005}{chapter.25}
\contentsline {section}{Walk a directory/Recursively}{1006}{chapter.25}
\contentsline {section}{Web scraping}{1007}{chapter.25}
\contentsline {section}{Window creation}{1008}{chapter.25}
\contentsline {section}{Window creation/X11}{1009}{chapter.25}
\contentsline {section}{Window management}{1011}{chapter.25}
\contentsline {section}{Wireworld}{1013}{chapter.25}
\contentsline {section}{Word wrap}{1016}{table.caption.111}
\contentsline {section}{Write float arrays to a text file}{1017}{table.caption.111}
\contentsline {section}{Write to Windows event log}{1019}{table.caption.111}
\contentsline {chapter}{\numberline {26}Rosetta Code Tasks starting with X}{1021}{chapter.26}
\contentsline {section}{XML/DOM serialization}{1021}{chapter.26}
\contentsline {section}{XML/Input}{1022}{chapter.26}
\contentsline {section}{XML/Output}{1023}{chapter.26}
\contentsline {section}{XML/XPath}{1025}{chapter.26}
\contentsline {section}{Xiaolin Wu's line algorithm}{1027}{chapter.26}
\contentsline {chapter}{\numberline {27}Rosetta Code Tasks starting with Y}{1029}{chapter.27}
\contentsline {section}{Y combinator}{1029}{chapter.27}
\contentsline {section}{Yahoo! Search}{1031}{chapter.27}
\contentsline {section}{Yin and yang}{1032}{chapter.27}
\contentsline {chapter}{\numberline {28}Rosetta Code Tasks starting with Z}{1035}{chapter.28}
\contentsline {section}{Zebra puzzle}{1035}{chapter.28}
\contentsline {section}{Zig-zag matrix}{1038}{Item.235}
\contentsline {part}{Part\ III\hspace {\betweenumberspace }Function Reference}{1041}{part.3}
\contentsline {chapter}{\numberline {29}Symbols starting with A}{1043}{chapter.29}
\contentsline {section}{\texttt {*Adr}}{1043}{chapter.29}
\contentsline {section}{\texttt {(adr 'var) -> num}}{1043}{chapter.29}
\contentsline {section}{\texttt {*Allow}}{1044}{chapter.29}
\contentsline {section}{\texttt {+Alt}}{1044}{chapter.29}
\contentsline {section}{\texttt {+Any}}{1044}{chapter.29}
\contentsline {section}{\texttt {+Aux}}{1045}{chapter.29}
\contentsline {section}{\texttt {(abort 'cnt . prg) -> any}}{1045}{chapter.29}
\contentsline {section}{\texttt {(abs 'num) -> num}}{1045}{chapter.29}
\contentsline {section}{\texttt {(accept 'cnt) -> cnt | NIL}}{1046}{chapter.29}
\contentsline {section}{\texttt {(accu 'var 'any 'num)}}{1046}{chapter.29}
\contentsline {section}{\texttt {(acquire 'sym) -> flg}}{1046}{chapter.29}
\contentsline {section}{\texttt {(alarm 'cnt . prg) -> cnt}}{1047}{chapter.29}
\contentsline {section}{\texttt {(align 'cnt 'any) -> sym}}{1047}{chapter.29}
\contentsline {section}{\texttt {(all ['T | '0]) -> lst}}{1047}{chapter.29}
\contentsline {section}{\texttt {(allow 'sym ['flg]) -> sym}}{1048}{chapter.29}
\contentsline {section}{\texttt {(allowed lst [sym ..])}}{1048}{chapter.29}
\contentsline {section}{\texttt {(and 'any ..) -> any}}{1049}{chapter.29}
\contentsline {section}{\texttt {(any 'sym) -> any}}{1049}{chapter.29}
\contentsline {section}{\texttt {(append 'lst ..) -> lst}}{1049}{chapter.29}
\contentsline {section}{\texttt {append/3}}{1049}{chapter.29}
\contentsline {section}{\texttt {(apply 'fun 'lst ['any ..]) -> any}}{1050}{chapter.29}
\contentsline {section}{\texttt {(arg ['cnt]) -> any}}{1050}{chapter.29}
\contentsline {section}{\texttt {(args) -> flg}}{1051}{chapter.29}
\contentsline {section}{\texttt {(argv [var ..] [. sym]) -> lst|sym}}{1051}{chapter.29}
\contentsline {section}{\texttt {(as 'any1 . any2) -> any2 | NIL}}{1052}{chapter.29}
\contentsline {section}{\texttt {(asoq 'any 'lst) -> lst}}{1052}{chapter.29}
\contentsline {section}{\texttt {(assert exe ..) -> prg | NIL}}{1053}{chapter.29}
\contentsline {section}{\texttt {(asserta 'lst) -> lst}}{1053}{chapter.29}
\contentsline {section}{\texttt {asserta/1}}{1054}{chapter.29}
\contentsline {section}{\texttt {(assertz 'lst) -> lst}}{1054}{chapter.29}
\contentsline {section}{\texttt {assertz/1}}{1055}{chapter.29}
\contentsline {section}{\texttt {(assoc 'any 'lst) -> lst}}{1055}{chapter.29}
\contentsline {section}{\texttt {(at '(cnt1 . cnt2|NIL) . prg) -> any}}{1056}{chapter.29}
\contentsline {section}{\texttt {(atom 'any) -> flg}}{1056}{chapter.29}
\contentsline {section}{\texttt {(aux 'var 'cls ['hook] 'any ..) -> sym}}{1056}{chapter.29}
\contentsline {chapter}{\numberline {30}Symbols starting with B}{1059}{chapter.30}
\contentsline {section}{\texttt {*Blob}}{1059}{chapter.30}
\contentsline {section}{\texttt {*Bye}}{1059}{chapter.30}
\contentsline {section}{\texttt {+Bag}}{1059}{chapter.30}
\contentsline {section}{\texttt {+Blob}}{1060}{chapter.30}
\contentsline {section}{\texttt {+Bool}}{1060}{chapter.30}
\contentsline {section}{\texttt {(balance 'var 'lst ['flg])}}{1060}{chapter.30}
\contentsline {section}{\texttt {(basename 'any) -> sym}}{1061}{chapter.30}
\contentsline {section}{\texttt {(be sym . any) -> sym}}{1061}{chapter.30}
\contentsline {section}{\texttt {(beep) -> any}}{1062}{chapter.30}
\contentsline {section}{\texttt {(bench . prg) -> any}}{1062}{chapter.30}
\contentsline {section}{\texttt {(bin 'num ['num]) -> sym}}{1062}{chapter.30}
\contentsline {section}{\texttt {(bind 'sym|lst . prg) -> any}}{1063}{chapter.30}
\contentsline {section}{\texttt {(bit? 'num ..) -> num | NIL}}{1063}{chapter.30}
\contentsline {section}{\texttt {(blob 'obj 'sym) -> sym}}{1064}{chapter.30}
\contentsline {section}{\texttt {(blob! 'obj 'sym 'file)}}{1064}{chapter.30}
\contentsline {section}{\texttt {(bool 'any) -> flg}}{1064}{chapter.30}
\contentsline {section}{\texttt {bool/3}}{1065}{chapter.30}
\contentsline {section}{\texttt {(box 'any) -> sym}}{1065}{chapter.30}
\contentsline {section}{\texttt {(box? 'any) -> sym | NIL}}{1065}{chapter.30}
\contentsline {section}{\texttt {(by 'fun1 'fun2 'lst ..) -> lst}}{1066}{chapter.30}
\contentsline {section}{(bye 'cnt|NIL)}{1066}{chapter.30}
\contentsline {chapter}{\numberline {31}Symbols starting with C}{1067}{chapter.31}
\contentsline {section}{\texttt {*Class}}{1067}{chapter.31}
\contentsline {section}{\texttt {(cache 'var 'sym . prg) -> any}}{1067}{chapter.31}
\contentsline {section}{\texttt {(call 'any ..) -> flg}}{1068}{chapter.31}
\contentsline {section}{\texttt {call/1}}{1068}{chapter.31}
\contentsline {section}{\texttt {(can 'msg) -> lst}}{1069}{chapter.31}
\contentsline {section}{\texttt {(car 'var) -> any}}{1070}{chapter.31}
\contentsline {section}{\texttt {(c[ad]*ar 'var) -> any}}{1070}{chapter.31}
\contentsline {section}{\texttt {(case 'any (any1 . prg1) (any2 . prg2) ..) -> any}}{1070}{chapter.31}
\contentsline {section}{\texttt {(catch 'any . prg) -> any}}{1070}{chapter.31}
\contentsline {section}{\texttt {(cd 'any) -> sym}}{1071}{chapter.31}
\contentsline {section}{\texttt {(cdr 'lst) -> any}}{1071}{chapter.31}
\contentsline {section}{\texttt {(center 'cnt|lst 'any ..) -> sym}}{1071}{chapter.31}
\contentsline {section}{\texttt {(chain 'lst ..) -> lst}}{1072}{chapter.31}
\contentsline {section}{\texttt {(char) -> sym}}{1072}{chapter.31}
\contentsline {section}{\texttt {(chdir 'any . prg) -> any}}{1073}{chapter.31}
\contentsline {section}{\texttt {(chkTree 'sym ['fun]) -> num}}{1073}{chapter.31}
\contentsline {section}{\texttt {(chop 'any) -> lst}}{1074}{chapter.31}
\contentsline {section}{\texttt {(circ 'any ..) -> lst}}{1074}{chapter.31}
\contentsline {section}{\texttt {(circ? 'any) -> any}}{1074}{chapter.31}
\contentsline {section}{\texttt {(class sym . typ) -> obj}}{1075}{chapter.31}
\contentsline {section}{\texttt {(clause '(sym . any)) -> sym}}{1075}{chapter.31}
\contentsline {section}{\texttt {clause/2}}{1076}{chapter.31}
\contentsline {section}{\texttt {(clip 'lst) -> lst}}{1076}{chapter.31}
\contentsline {section}{\texttt {(close 'cnt) -> cnt | NIL}}{1076}{chapter.31}
\contentsline {section}{\texttt {(cmd ['any]) -> sym}}{1077}{chapter.31}
\contentsline {section}{\texttt {(cnt 'fun 'lst ..) -> cnt}}{1077}{chapter.31}
\contentsline {section}{\texttt {(collect 'var 'cls ['hook] ['any|beg ['end [var ..]]])}}{1077}{chapter.31}
\contentsline {section}{\texttt {(commit ['any] [exe1] [exe2]) -> T}}{1078}{chapter.31}
\contentsline {section}{\texttt {(con 'lst 'any) -> any}}{1078}{chapter.31}
\contentsline {section}{\texttt {(conc 'lst ..) -> lst}}{1079}{chapter.31}
\contentsline {section}{\texttt {(cond ('any1 . prg1) ('any2 . prg2) ..) -> any}}{1079}{chapter.31}
\contentsline {section}{\texttt {(connect 'any1 'any2) -> cnt | NIL}}{1079}{chapter.31}
\contentsline {section}{\texttt {(cons 'any ['any ..]) -> lst}}{1080}{chapter.31}
\contentsline {section}{\texttt {(copy 'any) -> any}}{1080}{chapter.31}
\contentsline {section}{\texttt {(co 'sym [. prg]) -> any}}{1080}{chapter.31}
\contentsline {section}{\texttt {(count 'tree) -> num}}{1081}{chapter.31}
\contentsline {section}{\texttt {(ctl 'sym . prg) -> any}}{1081}{chapter.31}
\contentsline {section}{\texttt {(ctty 'sym|pid) -> flg}}{1082}{chapter.31}
\contentsline {section}{\texttt {(curry lst . fun) -> fun}}{1082}{chapter.31}
\contentsline {section}{\texttt {(cut 'cnt 'var) -> lst}}{1083}{chapter.31}
\contentsline {chapter}{\numberline {32}Symbols starting with D}{1085}{chapter.32}
\contentsline {section}{\texttt {*DB}}{1085}{chapter.32}
\contentsline {section}{\texttt {*Dbg}}{1086}{chapter.32}
\contentsline {section}{\texttt {*Dbs}}{1086}{chapter.32}
\contentsline {section}{\texttt {+Date}}{1086}{chapter.32}
\contentsline {section}{\texttt {+Dep}}{1087}{chapter.32}
\contentsline {section}{\texttt {(d) -> T}}{1087}{chapter.32}
\contentsline {section}{\texttt {(daemon 'sym . prg) -> fun}}{1087}{chapter.32}
\contentsline {section}{\texttt {(dat\$ 'dat ['sym]) -> sym}}{1088}{chapter.32}
\contentsline {section}{\texttt {(datStr 'dat ['flg]) -> sym}}{1088}{chapter.32}
\contentsline {section}{\texttt {(datSym 'dat) -> sym}}{1089}{chapter.32}
\contentsline {section}{\texttt {(date ['T]) -> dat}}{1089}{chapter.32}
\contentsline {section}{\texttt {(day 'dat ['lst]) -> sym}}{1090}{chapter.32}
\contentsline {section}{\texttt {(db 'var 'cls ['hook] 'any ['var 'any ..]) -> sym | NIL}}{1090}{chapter.32}
\contentsline {section}{\texttt {db/3}}{1091}{chapter.32}
\contentsline {section}{\texttt {(db: cls ..) -> num}}{1092}{chapter.32}
\contentsline {section}{\texttt {(dbSync) -> flg}}{1092}{chapter.32}
\contentsline {section}{\texttt {(dbck ['cnt] 'flg) -> any}}{1092}{chapter.32}
\contentsline {section}{\texttt {(dbs . lst)}}{1093}{chapter.32}
\contentsline {section}{\texttt {(dbs+ 'num . lst)}}{1093}{chapter.32}
\contentsline {section}{\texttt {(de sym . any) -> sym}}{1094}{chapter.32}
\contentsline {section}{\texttt {(debug 'sym) -> T}}{1094}{chapter.32}
\contentsline {section}{\texttt {(dec 'num) -> num}}{1095}{chapter.32}
\contentsline {section}{\texttt {(def 'sym 'any) -> sym}}{1096}{chapter.32}
\contentsline {section}{\texttt {(default var 'any ..) -> any}}{1096}{chapter.32}
\contentsline {section}{\texttt {(del 'any 'var) -> lst}}{1097}{chapter.32}
\contentsline {section}{\texttt {(delete 'any 'lst) -> lst}}{1097}{chapter.32}
\contentsline {section}{\texttt {delete/3}}{1098}{chapter.32}
\contentsline {section}{\texttt {(delq 'any 'lst) -> lst}}{1098}{chapter.32}
\contentsline {section}{\texttt {(dep 'cls) -> cls}}{1098}{chapter.32}
\contentsline {section}{\texttt {(depth 'lst) -> (cnt1 . cnt2)}}{1099}{chapter.32}
\contentsline {section}{\texttt {(diff 'lst 'lst) -> lst}}{1099}{chapter.32}
\contentsline {section}{\texttt {different/2}}{1099}{chapter.32}
\contentsline {section}{\texttt {(dir ['any] ['flg]) -> lst}}{1100}{chapter.32}
\contentsline {section}{\texttt {(dirname 'any) -> sym}}{1100}{chapter.32}
\contentsline {section}{\texttt {(dm sym . fun|cls2) -> sym}}{1100}{chapter.32}
\contentsline {section}{\texttt {(do 'flg|num ['any | (NIL 'any . prg) | (T 'any . prg) ..]) -> any}}{1101}{chapter.32}
\contentsline {section}{\texttt {(doc ['sym1] ['sym2])}}{1101}{chapter.32}
\contentsline {chapter}{\numberline {33}Symbols starting with E}{1103}{chapter.33}
\contentsline {section}{\texttt {*Err}}{1103}{chapter.33}
\contentsline {section}{\texttt {*Ext}}{1103}{chapter.33}
\contentsline {section}{\texttt {+Entity}}{1104}{chapter.33}
\contentsline {section}{\texttt {(e . prg) -> any}}{1105}{chapter.33}
\contentsline {section}{\texttt {(echo ['cnt ['cnt]] | ['sym ..]) -> sym}}{1106}{chapter.33}
\contentsline {section}{\texttt {(edit 'sym ..) -> NIL}}{1106}{chapter.33}
\contentsline {section}{\texttt {(env ['lst] | ['sym 'val] ..) -> lst}}{1107}{chapter.33}
\contentsline {section}{\texttt {(eof ['flg]) -> flg}}{1108}{chapter.33}
\contentsline {section}{\texttt {(eol) -> flg}}{1108}{chapter.33}
\contentsline {section}{\texttt {equal/2}}{1108}{chapter.33}
\contentsline {section}{\texttt {(err 'sym . prg) -> any}}{1109}{chapter.33}
\contentsline {section}{\texttt {(errno) -> cnt}}{1109}{chapter.33}
\contentsline {section}{\texttt {(eval 'any ['cnt ['lst]]) -> any}}{1109}{chapter.33}
\contentsline {section}{\texttt {(expDat 'sym) -> dat}}{1110}{chapter.33}
\contentsline {section}{\texttt {(expTel 'sym) -> sym}}{1111}{chapter.33}
\contentsline {section}{\texttt {(expr 'sym) -> fun}}{1112}{chapter.33}
\contentsline {section}{\texttt {(ext 'cnt . prg) -> any}}{1112}{chapter.33}
\contentsline {section}{\texttt {(ext? 'any) -> sym | NIL}}{1112}{chapter.33}
\contentsline {section}{\texttt {(extend cls) -> cls}}{1113}{chapter.33}
\contentsline {section}{\texttt {(extern 'sym) -> sym | NIL}}{1113}{chapter.33}
\contentsline {section}{\texttt {(extra ['any ..]) -> any}}{1113}{chapter.33}
\contentsline {section}{\texttt {(extract 'fun 'lst ..) -> lst}}{1114}{chapter.33}
\contentsline {chapter}{\numberline {34}Symbols starting with F}{1115}{chapter.34}
\contentsline {section}{\texttt {*Fork}}{1115}{chapter.34}
\contentsline {section}{\texttt {+Fold}}{1115}{chapter.34}
\contentsline {section}{\texttt {(fail) -> lst}}{1115}{chapter.34}
\contentsline {section}{\texttt {fail/0}}{1116}{chapter.34}
\contentsline {section}{\texttt {(fetch 'tree 'any) -> any}}{1116}{chapter.34}
\contentsline {section}{\texttt {(fifo 'var ['any ..]) -> any}}{1116}{chapter.34}
\contentsline {section}{\texttt {(file) -> (sym1 sym2 . num) | NIL}}{1117}{chapter.34}
\contentsline {section}{\texttt {(fill 'any ['sym|lst]) -> any}}{1117}{chapter.34}
\contentsline {section}{\texttt {(filter 'fun 'lst ..) -> lst}}{1118}{chapter.34}
\contentsline {section}{\texttt {(fin 'any) -> num|sym}}{1118}{chapter.34}
\contentsline {section}{\texttt {(finally exe . prg) -> any}}{1119}{chapter.34}
\contentsline {section}{\texttt {(find 'fun 'lst ..) -> any}}{1119}{chapter.34}
\contentsline {section}{\texttt {(fish 'fun 'any) -> lst}}{1120}{chapter.34}
\contentsline {section}{\texttt {(flg? 'any) -> flg}}{1120}{chapter.34}
\contentsline {section}{\texttt {(flip 'lst ['cnt]) -> lst}}{1120}{chapter.34}
\contentsline {section}{\texttt {(flush) -> flg}}{1121}{chapter.34}
\contentsline {section}{\texttt {(fmt64 'num) -> sym}}{1121}{chapter.34}
\contentsline {section}{\texttt {(fold 'any ['cnt]) -> sym}}{1122}{chapter.34}
\contentsline {section}{\texttt {fold/3}}{1122}{chapter.34}
\contentsline {section}{\texttt {(for sym 'num ['any | (NIL 'any . prg) | (T 'any . prg) ..]) -> any}}{1122}{chapter.34}
\contentsline {section}{\texttt {(fork) -> pid | NIL}}{1123}{chapter.34}
\contentsline {section}{\texttt {(forked)}}{1124}{chapter.34}
\contentsline {section}{\texttt {(format 'num ['cnt ['sym1 ['sym2]]]) -> sym}}{1124}{chapter.34}
\contentsline {section}{\texttt {(free 'cnt) -> (sym . lst)}}{1125}{chapter.34}
\contentsline {section}{\texttt {(from 'any ..) -> sym}}{1126}{chapter.34}
\contentsline {section}{\texttt {(full 'any) -> bool}}{1126}{chapter.34}
\contentsline {section}{\texttt {(fun? 'any) -> any}}{1127}{chapter.34}
\contentsline {chapter}{\numberline {35}Symbols starting with G}{1129}{chapter.35}
\contentsline {section}{\texttt {(gc ['cnt]) -> cnt | NIL}}{1129}{chapter.35}
\contentsline {section}{\texttt {(ge0 'any) -> num | NIL}}{1129}{chapter.35}
\contentsline {section}{\texttt {(genKey 'var 'cls ['hook ['num1 ['num2]]]) -> num}}{1130}{chapter.35}
\contentsline {section}{\texttt {(genStrKey 'sym 'var 'cls ['hook]) -> sym}}{1130}{chapter.35}
\contentsline {section}{\texttt {(get 'sym1|lst ['sym2|cnt ..]) -> any}}{1130}{chapter.35}
\contentsline {section}{\texttt {(getd 'any) -> fun | NIL}}{1131}{chapter.35}
\contentsline {section}{\texttt {(getl 'sym1|lst1 ['sym2|cnt ..]) -> lst}}{1131}{chapter.35}
\contentsline {section}{\texttt {(glue 'any 'lst) -> sym}}{1132}{chapter.35}
\contentsline {section}{\texttt {(goal '([pat 'any ..] . lst) ['sym 'any ..]) -> lst}}{1132}{chapter.35}
\contentsline {section}{\texttt {(group 'lst) -> lst}}{1133}{chapter.35}
\contentsline {section}{\texttt {(gt0 'any) -> num | NIL}}{1133}{chapter.35}
\contentsline {chapter}{\numberline {36}Symbols starting with H}{1135}{chapter.36}
\contentsline {section}{\texttt {*Hup}}{1135}{chapter.36}
\contentsline {section}{\texttt {+Hook}}{1135}{chapter.36}
\contentsline {section}{\texttt {(hash 'any) -> cnt}}{1135}{chapter.36}
\contentsline {section}{\texttt {(hax 'num) -> sym}}{1136}{chapter.36}
\contentsline {section}{\texttt {(hd 'sym ['cnt]) -> NIL}}{1136}{chapter.36}
\contentsline {section}{\texttt {(head 'cnt|lst 'lst) -> lst}}{1137}{chapter.36}
\contentsline {section}{\texttt {head/3}}{1137}{chapter.36}
\contentsline {section}{\texttt {(heap 'flg) -> cnt}}{1138}{chapter.36}
\contentsline {section}{\texttt {(hear 'cnt) -> cnt}}{1138}{chapter.36}
\contentsline {section}{\texttt {(here ['sym]) -> sym}}{1138}{chapter.36}
\contentsline {section}{\texttt {(hex 'num ['num]) -> sym}}{1139}{chapter.36}
\contentsline {section}{\texttt {(host 'any) -> sym}}{1140}{chapter.36}
\contentsline {chapter}{\numberline {37}Symbols starting with I}{1141}{chapter.37}
\contentsline {section}{\texttt {+Idx}}{1141}{chapter.37}
\contentsline {section}{\texttt {+index}}{1141}{chapter.37}
\contentsline {section}{\texttt {(id 'num ['num]) -> sym}}{1141}{chapter.37}
\contentsline {section}{\texttt {(idx 'var 'any 'flg) -> lst (idx 'var 'any) -> lst (idx 'var) -> lst}}{1142}{chapter.37}
\contentsline {section}{\texttt {(if 'any1 'any2 . prg) -> any}}{1143}{chapter.37}
\contentsline {section}{\texttt {(if2 'any1 'any2 'any3 'any4 'any5 . prg) -> any}}{1144}{chapter.37}
\contentsline {section}{\texttt {(ifn 'any1 'any2 . prg) -> any}}{1144}{chapter.37}
\contentsline {section}{\texttt {(import lst) -> NIL}}{1144}{chapter.37}
\contentsline {section}{\texttt {(in 'any . prg) -> any}}{1145}{chapter.37}
\contentsline {section}{\texttt {(inc 'num) -> num (inc 'var ['num]) -> num}}{1145}{chapter.37}
\contentsline {section}{\texttt {(inc! 'obj 'sym ['num]) -> num}}{1146}{chapter.37}
\contentsline {section}{\texttt {(index 'any 'lst) -> cnt | NIL}}{1146}{chapter.37}
\contentsline {section}{\texttt {(info 'any) -> (cnt|T dat . tim)}}{1147}{chapter.37}
\contentsline {section}{\texttt {(init 'tree ['any1] ['any2]) -> lst}}{1147}{chapter.37}
\contentsline {section}{\texttt {(insert 'cnt 'lst 'any) -> lst}}{1147}{chapter.37}
\contentsline {section}{\texttt {(intern 'sym) -> sym}}{1148}{chapter.37}
\contentsline {section}{\texttt {(ipid) -> pid | NIL}}{1148}{chapter.37}
\contentsline {section}{\texttt {(isa 'cls|typ 'obj) -> obj | NIL}}{1148}{chapter.37}
\contentsline {section}{\texttt {isa/2}}{1149}{chapter.37}
\contentsline {section}{\texttt {(iter 'tree ['fun] ['any1] ['any2] ['flg])}}{1149}{chapter.37}
\contentsline {chapter}{\numberline {38}Symbols starting with J}{1151}{chapter.38}
\contentsline {section}{\texttt {+Joint}}{1151}{chapter.38}
\contentsline {section}{\texttt {(job 'lst . prg) -> any}}{1151}{chapter.38}
\contentsline {section}{\texttt {(journal 'any ..) -> T}}{1152}{chapter.38}
\contentsline {chapter}{\numberline {39}Symbols starting with K}{1153}{chapter.39}
\contentsline {section}{\texttt {+Key}}{1153}{chapter.39}
\contentsline {section}{\texttt {(key ['cnt]) -> sym}}{1153}{chapter.39}
\contentsline {section}{\texttt {(kill 'pid ['cnt]) -> flg}}{1154}{chapter.39}
\contentsline {chapter}{\numberline {40}Symbols starting with L}{1155}{chapter.40}
\contentsline {section}{\texttt {*Led}}{1155}{chapter.40}
\contentsline {section}{\texttt {+Link}}{1155}{chapter.40}
\contentsline {section}{\texttt {+List}}{1156}{chapter.40}
\contentsline {section}{\texttt {(last 'lst) -> any}}{1156}{chapter.40}
\contentsline {section}{\texttt {(later 'var . prg) -> var}}{1156}{chapter.40}
\contentsline {section}{\texttt {(ld) -> any}}{1156}{chapter.40}
\contentsline {section}{\texttt {(le0 'any) -> num | NIL}}{1157}{chapter.40}
\contentsline {section}{\texttt {(leaf 'tree) -> any}}{1157}{chapter.40}
\contentsline {section}{\texttt {(length 'any) -> cnt | T}}{1157}{chapter.40}
\contentsline {section}{\texttt {(let sym 'any . prg) -> any}}{1158}{chapter.40}
\contentsline {section}{\texttt {(let? sym 'any . prg) -> any}}{1158}{chapter.40}
\contentsline {section}{\texttt {(lieu 'any) -> sym | NIL}}{1159}{chapter.40}
\contentsline {section}{\texttt {(line 'flg ['cnt ..]) -> lst|sym}}{1159}{chapter.40}
\contentsline {section}{\texttt {(lines 'any ..) -> cnt}}{1160}{chapter.40}
\contentsline {section}{\texttt {(link 'any ..) -> any}}{1160}{chapter.40}
\contentsline {section}{\texttt {(lint 'sym) -> lst}}{1161}{chapter.40}
\contentsline {section}{\texttt {(lintAll ['sym ..]) -> lst}}{1161}{chapter.40}
\contentsline {section}{\texttt {(lisp 'sym ['fun]) -> num}}{1161}{chapter.40}
\contentsline {section}{\texttt {(list 'any ['any ..]) -> lst}}{1162}{chapter.40}
\contentsline {section}{\texttt {lst/3}}{1162}{chapter.40}
\contentsline {section}{\texttt {(lst? 'any) -> flg}}{1163}{chapter.40}
\contentsline {section}{\texttt {(listen 'cnt1 ['cnt2]) -> cnt | NIL}}{1163}{chapter.40}
\contentsline {section}{\texttt {(lit 'any) -> any}}{1163}{chapter.40}
\contentsline {section}{\texttt {(load 'any ..) -> any}}{1164}{chapter.40}
\contentsline {section}{\texttt {(loc 'sym 'lst) -> sym}}{1164}{chapter.40}
\contentsline {section}{\texttt {(local lst) -> sym}}{1165}{chapter.40}
\contentsline {section}{\texttt {(locale 'sym1 'sym2 ['sym ..])}}{1165}{chapter.40}
\contentsline {section}{\texttt {(lock ['sym]) -> cnt | NIL}}{1165}{chapter.40}
\contentsline {section}{\texttt {(loop ['any | (NIL 'any . prg) | (T 'any . prg) ..]) -> any}}{1166}{chapter.40}
\contentsline {section}{\texttt {(low? 'any) -> sym | NIL}}{1166}{chapter.40}
\contentsline {section}{\texttt {(lowc 'any) -> any}}{1167}{chapter.40}
\contentsline {section}{\texttt {(lt0 'any) -> num | NIL}}{1167}{chapter.40}
\contentsline {section}{\texttt {(lup 'lst 'any) -> lst}}{1167}{chapter.40}
\contentsline {chapter}{\numberline {41}Symbols starting with M}{1169}{chapter.41}
\contentsline {section}{\texttt {*Msg}}{1169}{chapter.41}
\contentsline {section}{\texttt {+Mis}}{1169}{chapter.41}
\contentsline {section}{\texttt {(macro prg) -> any}}{1170}{chapter.41}
\contentsline {section}{\texttt {(made ['lst1 ['lst2]]) -> lst}}{1170}{chapter.41}
\contentsline {section}{\texttt {(mail `any `cnt `sym1 `sym2|lst1 `sym3 `lst2 . prg)'}}{1171}{chapter.41}
\contentsline {section}{\texttt {(make .. [(made 'lst ..)] .. [(link 'any ..)] ..) -> any}}{1171}{chapter.41}
\contentsline {section}{\texttt {(map 'fun 'lst ..) -> lst}}{1171}{chapter.41}
\contentsline {section}{\texttt {map/3}}{1172}{chapter.41}
\contentsline {section}{\texttt {(mapc 'fun 'lst ..) -> any}}{1172}{chapter.41}
\contentsline {section}{\texttt {(mapcan 'fun 'lst ..) -> lst}}{1173}{chapter.41}
\contentsline {section}{\texttt {(mapcar 'fun 'lst ..) -> lst}}{1173}{chapter.41}
\contentsline {section}{\texttt {(mapcon 'fun 'lst ..) -> lst}}{1173}{chapter.41}
\contentsline {section}{\texttt {(maplist 'fun 'lst ..) -> lst}}{1174}{chapter.41}
\contentsline {section}{\texttt {(maps 'fun 'sym ['lst ..]) -> any}}{1174}{chapter.41}
\contentsline {section}{\texttt {(mark 'sym|0 ['NIL | 'T | '0]) -> flg}}{1174}{chapter.41}
\contentsline {section}{\texttt {(match 'lst1 'lst2) -> flg}}{1175}{chapter.41}
\contentsline {section}{\texttt {(max 'any ..) -> any}}{1175}{chapter.41}
\contentsline {section}{\texttt {(maxKey 'tree ['any1 ['any2]]) -> any}}{1176}{chapter.41}
\contentsline {section}{\texttt {(maxi 'fun 'lst ..) -> any}}{1176}{chapter.41}
\contentsline {section}{\texttt {(member 'any 'lst) -> any}}{1176}{chapter.41}
\contentsline {section}{\texttt {member/2}}{1177}{chapter.41}
\contentsline {section}{\texttt {(memq 'any 'lst) -> any}}{1177}{chapter.41}
\contentsline {section}{\texttt {(meta 'obj|typ 'sym ['sym2|cnt ..]) -> any}}{1177}{chapter.41}
\contentsline {section}{\texttt {(meth 'obj ['any ..]) -> any}}{1178}{chapter.41}
\contentsline {section}{\texttt {(method 'msg 'obj) -> fun}}{1178}{chapter.41}
\contentsline {section}{\texttt {(min 'any ..) -> any}}{1178}{chapter.41}
\contentsline {section}{\texttt {(minKey 'tree ['any1 ['any2]]) -> any}}{1179}{chapter.41}
\contentsline {section}{\texttt {(mini 'fun 'lst ..) -> any}}{1179}{chapter.41}
\contentsline {section}{\texttt {(mix 'lst cnt|'any ..) -> lst}}{1179}{chapter.41}
\contentsline {section}{\texttt {(mmeq 'lst 'lst) -> any}}{1180}{chapter.41}
\contentsline {section}{\texttt {(money 'num ['sym]) -> sym}}{1180}{chapter.41}
\contentsline {section}{\texttt {(more 'lst ['fun]) -> flg}}{1180}{chapter.41}
\contentsline {section}{\texttt {(msg 'any ['any ..]) -> any}}{1182}{chapter.41}
\contentsline {chapter}{\numberline {42}Symbols starting with N}{1183}{chapter.42}
\contentsline {section}{\texttt {+Need}}{1183}{chapter.42}
\contentsline {section}{\texttt {+Number}}{1183}{chapter.42}
\contentsline {section}{\texttt {(n== `any ..) -> flg}}{1183}{chapter.42}
\contentsline {section}{\texttt {(n0 'any) -> flg}}{1184}{chapter.42}
\contentsline {section}{\texttt {(nT 'any) -> flg}}{1184}{chapter.42}
\contentsline {section}{\texttt {(name 'sym ['sym2]) -> sym}}{1184}{chapter.42}
\contentsline {section}{\texttt {(nand 'any ..) -> flg}}{1185}{chapter.42}
\contentsline {section}{\texttt {(native 'cnt1|sym1 'cnt2|sym2 'sym|lst 'any ..) -> any}}{1186}{chapter.42}
\contentsline {section}{\texttt {(need 'cnt ['lst ['any]]) -> lst}}{1188}{chapter.42}
\contentsline {section}{\texttt {(new ['flg|num] ['typ ['any ..]]) -> obj}}{1188}{chapter.42}
\contentsline {section}{\texttt {(new! 'typ ['any ..]) -> obj}}{1189}{chapter.42}
\contentsline {section}{\texttt {(next) -> any}}{1189}{chapter.42}
\contentsline {section}{\texttt {(nil . prg) -> NIL}}{1189}{chapter.42}
\contentsline {section}{\texttt {nil/1}}{1190}{chapter.42}
\contentsline {section}{\texttt {(noLint 'sym)}}{1190}{chapter.42}
\contentsline {section}{\texttt {(nond ('any1 . prg1) ('any2 . prg2) ..) -> any}}{1190}{chapter.42}
\contentsline {section}{\texttt {(nor 'any ..) -> flg}}{1191}{chapter.42}
\contentsline {section}{\texttt {(not 'any) -> flg}}{1191}{chapter.42}
\contentsline {section}{\texttt {not/1}}{1191}{chapter.42}
\contentsline {section}{\texttt {(nth 'lst 'cnt ..) -> lst}}{1192}{chapter.42}
\contentsline {section}{\texttt {(num? 'any) -> num | NIL}}{1192}{chapter.42}
\contentsline {chapter}{\numberline {43}Symbols starting with O}{1193}{chapter.43}
\contentsline {section}{\texttt {*Once}}{1193}{chapter.43}
\contentsline {section}{\texttt {*OS}}{1193}{chapter.43}
\contentsline {section}{\texttt {(obj (typ var [hook] val ..) var2 val2 ..) -> obj}}{1193}{chapter.43}
\contentsline {section}{\texttt {(object 'sym 'any ['sym2 'any2 ..]) -> obj}}{1194}{chapter.43}
\contentsline {section}{\texttt {(oct 'num ['num]) -> sym}}{1194}{chapter.43}
\contentsline {section}{\texttt {(off var ..) -> NIL}}{1195}{chapter.43}
\contentsline {section}{\texttt {(offset 'lst1 'lst2) -> cnt | NIL}}{1195}{chapter.43}
\contentsline {section}{\texttt {(on var ..) -> T}}{1195}{chapter.43}
\contentsline {section}{\texttt {(once . prg) -> any}}{1196}{chapter.43}
\contentsline {section}{\texttt {(one var ..) -> 1}}{1196}{chapter.43}
\contentsline {section}{\texttt {(onOff var ..) -> flg}}{1196}{chapter.43}
\contentsline {section}{\texttt {(open 'any ['flg]) -> cnt | NIL}}{1197}{chapter.43}
\contentsline {section}{\texttt {(opid) -> pid | NIL}}{1197}{chapter.43}
\contentsline {section}{\texttt {(opt) -> sym}}{1197}{chapter.43}
\contentsline {section}{\texttt {(or 'any ..) -> any}}{1198}{chapter.43}
\contentsline {section}{\texttt {or/2}}{1198}{chapter.43}
\contentsline {section}{\texttt {(out 'any . prg) -> any}}{1198}{chapter.43}
\contentsline {chapter}{\numberline {44}Symbols starting with P}{1199}{chapter.44}
\contentsline {section}{\texttt {*PPid}}{1199}{chapter.44}
\contentsline {section}{\texttt {*Pid}}{1199}{chapter.44}
\contentsline {section}{\texttt {*Prompt}}{1200}{chapter.44}
\contentsline {section}{\texttt {(pack 'any ..) -> sym}}{1200}{chapter.44}
\contentsline {section}{\texttt {(pad 'cnt 'any) -> sym}}{1200}{chapter.44}
\contentsline {section}{\texttt {(pair 'any) -> any}}{1201}{chapter.44}
\contentsline {section}{\texttt {part/3}}{1201}{chapter.44}
\contentsline {section}{\texttt {(pass 'fun ['any ..]) -> any}}{1201}{chapter.44}
\contentsline {section}{\texttt {(pat? 'any) -> pat | NIL}}{1202}{chapter.44}
\contentsline {section}{\texttt {(patch 'lst 'any . prg) -> any}}{1202}{chapter.44}
\contentsline {section}{\texttt {(path 'any) -> sym}}{1203}{chapter.44}
\contentsline {section}{\texttt {(peek) -> sym}}{1203}{chapter.44}