File: toc0.md

package info (click to toggle)
tcllib 1.20%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 68,064 kB
  • sloc: tcl: 216,842; ansic: 14,250; sh: 2,846; xml: 1,766; yacc: 1,145; pascal: 881; makefile: 107; perl: 84; f90: 84; python: 33; ruby: 13; php: 11
file content (930 lines) | stat: -rw-r--r-- 48,018 bytes parent folder | download
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

[//000000001]: # (Table of contents generated by tcllib/doctools/toc with format 'markdown')

# Table Of Contents \-\-

  - [By Categories]()

      * [Argument entry form, mega widget]()

          + [tepam::argument\_dialogbox](tcllib/files/modules/tepam/tepam\_argument\_dialogbox\.md) TEPAM argument\_dialogbox, reference manual

      * [Benchmark tools]()

          + [bench](tcllib/files/modules/bench/bench\.md) bench \- Processing benchmark suites

          + [bench::in](tcllib/files/modules/bench/bench\_read\.md) bench::in \- Reading benchmark results

          + [bench::out::csv](tcllib/files/modules/bench/bench\_wcsv\.md) bench::out::csv \- Formatting benchmark results as CSV

          + [bench::out::text](tcllib/files/modules/bench/bench\_wtext\.md) bench::out::text \- Formatting benchmark results as human readable text

          + [bench\_intro](tcllib/files/modules/bench/bench\_intro\.md) bench introduction

          + [bench\_lang\_intro](tcllib/files/modules/bench/bench\_lang\_intro\.md) bench language introduction

          + [bench\_lang\_spec](tcllib/files/modules/bench/bench\_lang\_spec\.md) bench language specification

      * [CGI programming]()

          + [html](tcllib/files/modules/html/html\.md) Procedures to generate HTML structures

          + [javascript](tcllib/files/modules/javascript/javascript\.md) Procedures to generate HTML and Java Script structures\.

          + [json](tcllib/files/modules/json/json\.md) JSON parser

          + [json::write](tcllib/files/modules/json/json\_write\.md) JSON generation

          + [ncgi](tcllib/files/modules/ncgi/ncgi\.md) Procedures to manipulate CGI values\.

      * [Channels]()

          + [tcl::chan::cat](tcllib/files/modules/virtchannel\_base/cat\.md) Concatenation channel

          + [tcl::chan::core](tcllib/files/modules/virtchannel\_core/core\.md) Basic reflected/virtual channel support

          + [tcl::chan::events](tcllib/files/modules/virtchannel\_core/events\.md) Event support for reflected/virtual channels

          + [tcl::chan::facade](tcllib/files/modules/virtchannel\_base/facade\.md) Facade channel

          + [tcl::chan::fifo](tcllib/files/modules/virtchannel\_base/tcllib\_fifo\.md) In\-memory fifo channel

          + [tcl::chan::fifo2](tcllib/files/modules/virtchannel\_base/tcllib\_fifo2\.md) In\-memory interconnected fifo channels

          + [tcl::chan::halfpipe](tcllib/files/modules/virtchannel\_base/halfpipe\.md) In\-memory channel, half of a fifo2

          + [tcl::chan::memchan](tcllib/files/modules/virtchannel\_base/tcllib\_memchan\.md) In\-memory channel

          + [tcl::chan::null](tcllib/files/modules/virtchannel\_base/tcllib\_null\.md) Null channel

          + [tcl::chan::nullzero](tcllib/files/modules/virtchannel\_base/nullzero\.md) Null/Zero channel combination

          + [tcl::chan::random](tcllib/files/modules/virtchannel\_base/tcllib\_random\.md) Random channel

          + [tcl::chan::std](tcllib/files/modules/virtchannel\_base/std\.md) Standard I/O, unification of stdin and stdout

          + [tcl::chan::string](tcllib/files/modules/virtchannel\_base/tcllib\_string\.md) Read\-only in\-memory channel

          + [tcl::chan::textwindow](tcllib/files/modules/virtchannel\_base/textwindow\.md) Textwindow channel

          + [tcl::chan::variable](tcllib/files/modules/virtchannel\_base/tcllib\_variable\.md) In\-memory channel using variable for storage

          + [tcl::chan::zero](tcllib/files/modules/virtchannel\_base/tcllib\_zero\.md) Zero channel

          + [tcl::randomseed](tcllib/files/modules/virtchannel\_base/randseed\.md) Utilities for random channels

          + [tcl::transform::adler32](tcllib/files/modules/virtchannel\_transform/adler32\.md) Adler32 transformation

          + [tcl::transform::base64](tcllib/files/modules/virtchannel\_transform/vt\_base64\.md) Base64 encoding transformation

          + [tcl::transform::core](tcllib/files/modules/virtchannel\_core/transformcore\.md) Basic reflected/virtual channel transform support

          + [tcl::transform::counter](tcllib/files/modules/virtchannel\_transform/vt\_counter\.md) Counter transformation

          + [tcl::transform::crc32](tcllib/files/modules/virtchannel\_transform/vt\_crc32\.md) Crc32 transformation

          + [tcl::transform::hex](tcllib/files/modules/virtchannel\_transform/hex\.md) Hexadecimal encoding transformation

          + [tcl::transform::identity](tcllib/files/modules/virtchannel\_transform/identity\.md) Identity transformation

          + [tcl::transform::limitsize](tcllib/files/modules/virtchannel\_transform/limitsize\.md) limiting input

          + [tcl::transform::observe](tcllib/files/modules/virtchannel\_transform/observe\.md) Observer transformation, stream copy

          + [tcl::transform::otp](tcllib/files/modules/virtchannel\_transform/vt\_otp\.md) Encryption via one\-time pad

          + [tcl::transform::rot](tcllib/files/modules/virtchannel\_transform/rot\.md) rot\-encryption

          + [tcl::transform::spacer](tcllib/files/modules/virtchannel\_transform/spacer\.md) Space insertation and removal

          + [tcl::transform::zlib](tcllib/files/modules/virtchannel\_transform/tcllib\_zlib\.md) zlib \(de\)compression

      * [Coroutine]()

          + [coroutine](tcllib/files/modules/coroutine/tcllib\_coroutine\.md) Coroutine based event and IO handling

          + [coroutine::auto](tcllib/files/modules/coroutine/coro\_auto\.md) Automatic event and IO coroutine awareness

      * [Data structures]()

          + [counter](tcllib/files/modules/counter/counter\.md) Procedures for counters and histograms

          + [report](tcllib/files/modules/report/report\.md) Create and manipulate report objects

          + [struct::disjointset](tcllib/files/modules/struct/disjointset\.md) Disjoint set data structure

          + [struct::graph](tcllib/files/modules/struct/graph\.md) Create and manipulate directed graph objects

          + [struct::graph::op](tcllib/files/modules/struct/graphops\.md) Operation for \(un\)directed graph objects

          + [struct::graph\_v1](tcllib/files/modules/struct/graph1\.md) Create and manipulate directed graph objects

          + [struct::list](tcllib/files/modules/struct/struct\_list\.md) Procedures for manipulating lists

          + [struct::matrix](tcllib/files/modules/struct/matrix\.md) Create and manipulate matrix objects

          + [struct::matrix\_v1](tcllib/files/modules/struct/matrix1\.md) Create and manipulate matrix objects

          + [struct::pool](tcllib/files/modules/struct/pool\.md) Create and manipulate pool objects \(of discrete items\)

          + [struct::prioqueue](tcllib/files/modules/struct/prioqueue\.md) Create and manipulate prioqueue objects

          + [struct::queue](tcllib/files/modules/struct/queue\.md) Create and manipulate queue objects

          + [struct::record](tcllib/files/modules/struct/record\.md) Define and create records \(similar to 'C' structures\)

          + [struct::set](tcllib/files/modules/struct/struct\_set\.md) Procedures for manipulating sets

          + [struct::skiplist](tcllib/files/modules/struct/skiplist\.md) Create and manipulate skiplists

          + [struct::stack](tcllib/files/modules/struct/stack\.md) Create and manipulate stack objects

          + [struct::tree](tcllib/files/modules/struct/struct\_tree\.md) Create and manipulate tree objects

          + [struct::tree\_v1](tcllib/files/modules/struct/struct\_tree1\.md) Create and manipulate tree objects

          + [treeql](tcllib/files/modules/treeql/treeql\.md) Query tree objects

      * [debugging, tracing, and logging]()

          + [debug](tcllib/files/modules/debug/debug\.md) debug narrative \- core

          + [debug::caller](tcllib/files/modules/debug/debug\_caller\.md) debug narrative \- caller

          + [debug::heartbeat](tcllib/files/modules/debug/debug\_heartbeat\.md) debug narrative \- heartbeat

          + [debug::timestamp](tcllib/files/modules/debug/debug\_timestamp\.md) debug narrative \- timestamping

      * [Documentation tools]()

          + [docidx\_intro](tcllib/files/modules/doctools/docidx\_intro\.md) docidx introduction

          + [docidx\_lang\_cmdref](tcllib/files/modules/doctools/docidx\_lang\_cmdref\.md) docidx language command reference

          + [docidx\_lang\_faq](tcllib/files/modules/doctools/docidx\_lang\_faq\.md) docidx language faq

          + [docidx\_lang\_intro](tcllib/files/modules/doctools/docidx\_lang\_intro\.md) docidx language introduction

          + [docidx\_lang\_syntax](tcllib/files/modules/doctools/docidx\_lang\_syntax\.md) docidx language syntax

          + [docidx\_plugin\_apiref](tcllib/files/modules/doctools/docidx\_plugin\_apiref\.md) docidx plugin API reference

          + [docstrip](tcllib/files/modules/docstrip/docstrip\.md) Docstrip style source code extraction

          + [docstrip\_util](tcllib/files/modules/docstrip/docstrip\_util\.md) Docstrip\-related utilities

          + [doctoc\_intro](tcllib/files/modules/doctools/doctoc\_intro\.md) doctoc introduction

          + [doctoc\_lang\_cmdref](tcllib/files/modules/doctools/doctoc\_lang\_cmdref\.md) doctoc language command reference

          + [doctoc\_lang\_faq](tcllib/files/modules/doctools/doctoc\_lang\_faq\.md) doctoc language faq

          + [doctoc\_lang\_intro](tcllib/files/modules/doctools/doctoc\_lang\_intro\.md) doctoc language introduction

          + [doctoc\_lang\_syntax](tcllib/files/modules/doctools/doctoc\_lang\_syntax\.md) doctoc language syntax

          + [doctoc\_plugin\_apiref](tcllib/files/modules/doctools/doctoc\_plugin\_apiref\.md) doctoc plugin API reference

          + [doctools](tcllib/files/modules/doctools/doctools\.md) doctools \- Processing documents

          + [doctools2idx\_introduction](tcllib/files/modules/doctools2idx/idx\_introduction\.md) DocTools \- Keyword indices

          + [doctools2toc\_introduction](tcllib/files/modules/doctools2toc/toc\_introduction\.md) DocTools \- Tables of Contents

          + [doctools::changelog](tcllib/files/modules/doctools/changelog\.md) Processing text in Emacs ChangeLog format

          + [doctools::cvs](tcllib/files/modules/doctools/cvs\.md) Processing text in 'cvs log' format

          + [doctools::html::cssdefaults](tcllib/files/modules/doctools2base/html\_cssdefaults\.md) Default CSS style for HTML export plugins

          + [doctools::idx](tcllib/files/modules/doctools2idx/idx\_container\.md) Holding keyword indices

          + [doctools::idx](tcllib/files/modules/doctools/docidx\.md) docidx \- Processing indices

          + [doctools::idx::export](tcllib/files/modules/doctools2idx/idx\_export\.md) Exporting keyword indices

          + [doctools::idx::import](tcllib/files/modules/doctools2idx/idx\_import\.md) Importing keyword indices

          + [doctools::idx::parse](tcllib/files/modules/doctools2idx/idx\_parse\.md) Parsing text in docidx format

          + [doctools::idx::structure](tcllib/files/modules/doctools2idx/idx\_structure\.md) Docidx serialization utilities

          + [doctools::msgcat](tcllib/files/modules/doctools2base/tcllib\_msgcat\.md) Message catalog management for the various document parsers

          + [doctools::msgcat::idx::c](tcllib/files/modules/doctools2idx/idx\_msgcat\_c\.md) Message catalog for the docidx parser \(C\)

          + [doctools::msgcat::idx::de](tcllib/files/modules/doctools2idx/idx\_msgcat\_de\.md) Message catalog for the docidx parser \(DE\)

          + [doctools::msgcat::idx::en](tcllib/files/modules/doctools2idx/idx\_msgcat\_en\.md) Message catalog for the docidx parser \(EN\)

          + [doctools::msgcat::idx::fr](tcllib/files/modules/doctools2idx/idx\_msgcat\_fr\.md) Message catalog for the docidx parser \(FR\)

          + [doctools::msgcat::toc::c](tcllib/files/modules/doctools2toc/toc\_msgcat\_c\.md) Message catalog for the doctoc parser \(C\)

          + [doctools::msgcat::toc::de](tcllib/files/modules/doctools2toc/toc\_msgcat\_de\.md) Message catalog for the doctoc parser \(DE\)

          + [doctools::msgcat::toc::en](tcllib/files/modules/doctools2toc/toc\_msgcat\_en\.md) Message catalog for the doctoc parser \(EN\)

          + [doctools::msgcat::toc::fr](tcllib/files/modules/doctools2toc/toc\_msgcat\_fr\.md) Message catalog for the doctoc parser \(FR\)

          + [doctools::nroff::man\_macros](tcllib/files/modules/doctools2base/nroff\_manmacros\.md) Default CSS style for NROFF export plugins

          + [doctools::tcl::parse](tcllib/files/modules/doctools2base/tcl\_parse\.md) Processing text in 'subst \-novariables' format

          + [doctools::toc](tcllib/files/modules/doctools2toc/toc\_container\.md) Holding tables of contents

          + [doctools::toc](tcllib/files/modules/doctools/doctoc\.md) doctoc \- Processing tables of contents

          + [doctools::toc::export](tcllib/files/modules/doctools2toc/toc\_export\.md) Exporting tables of contents

          + [doctools::toc::import](tcllib/files/modules/doctools2toc/toc\_import\.md) Importing keyword indices

          + [doctools::toc::parse](tcllib/files/modules/doctools2toc/toc\_parse\.md) Parsing text in doctoc format

          + [doctools::toc::structure](tcllib/files/modules/doctools2toc/toc\_structure\.md) Doctoc serialization utilities

          + [doctools\_intro](tcllib/files/modules/doctools/doctools\_intro\.md) doctools introduction

          + [doctools\_lang\_cmdref](tcllib/files/modules/doctools/doctools\_lang\_cmdref\.md) doctools language command reference

          + [doctools\_lang\_faq](tcllib/files/modules/doctools/doctools\_lang\_faq\.md) doctools language faq

          + [doctools\_lang\_intro](tcllib/files/modules/doctools/doctools\_lang\_intro\.md) doctools language introduction

          + [doctools\_lang\_syntax](tcllib/files/modules/doctools/doctools\_lang\_syntax\.md) doctools language syntax

          + [doctools\_plugin\_apiref](tcllib/files/modules/doctools/doctools\_plugin\_apiref\.md) doctools plugin API reference

          + [dtplite](tcllib/files/modules/dtplite/pkg\_dtplite\.md) Lightweight DocTools Markup Processor

          + [dtplite](tcllib/files/apps/dtplite\.md) Lightweight DocTools Markup Processor

          + [mpexpand](tcllib/files/modules/doctools/mpexpand\.md) Markup processor

          + [tcldocstrip](tcllib/files/apps/tcldocstrip\.md) Tcl\-based Docstrip Processor

          + [tepam::doc\_gen](tcllib/files/modules/tepam/tepam\_doc\_gen\.md) TEPAM DOC Generation, reference manual

          + [textutil::expander](tcllib/files/modules/textutil/expander\.md) Procedures to process templates and expand text\.

      * [File]()

          + [zipfile::decode](tcllib/files/modules/zip/decode\.md) Access to zip archives

          + [zipfile::encode](tcllib/files/modules/zip/encode\.md) Generation of zip archives

          + [zipfile::mkzip](tcllib/files/modules/zip/mkzip\.md) Build a zip archive

      * [File formats]()

          + [gpx](tcllib/files/modules/gpx/gpx\.md) Extracts waypoints, tracks and routes from GPX files

          + [jpeg](tcllib/files/modules/jpeg/jpeg\.md) JPEG querying and manipulation of meta data

          + [png](tcllib/files/modules/png/png\.md) PNG querying and manipulation of meta data

          + [tar](tcllib/files/modules/tar/tar\.md) Tar file creation, extraction & manipulation

          + [tiff](tcllib/files/modules/tiff/tiff\.md) TIFF reading, writing, and querying and manipulation of meta data

      * [Grammars and finite automata]()

          + [grammar::aycock](tcllib/files/modules/grammar\_aycock/aycock\.md) Aycock\-Horspool\-Earley parser generator for Tcl

          + [grammar::fa](tcllib/files/modules/grammar\_fa/fa\.md) Create and manipulate finite automatons

          + [grammar::fa::dacceptor](tcllib/files/modules/grammar\_fa/dacceptor\.md) Create and use deterministic acceptors

          + [grammar::fa::dexec](tcllib/files/modules/grammar\_fa/dexec\.md) Execute deterministic finite automatons

          + [grammar::fa::op](tcllib/files/modules/grammar\_fa/faop\.md) Operations on finite automatons

          + [grammar::me::cpu](tcllib/files/modules/grammar\_me/me\_cpu\.md) Virtual machine implementation II for parsing token streams

          + [grammar::me::cpu::core](tcllib/files/modules/grammar\_me/me\_cpucore\.md) ME virtual machine state manipulation

          + [grammar::me::cpu::gasm](tcllib/files/modules/grammar\_me/gasm\.md) ME assembler

          + [grammar::me::tcl](tcllib/files/modules/grammar\_me/me\_tcl\.md) Virtual machine implementation I for parsing token streams

          + [grammar::me::util](tcllib/files/modules/grammar\_me/me\_util\.md) AST utilities

          + [grammar::me\_ast](tcllib/files/modules/grammar\_me/me\_ast\.md) Various representations of ASTs

          + [grammar::me\_intro](tcllib/files/modules/grammar\_me/me\_intro\.md) Introduction to virtual machines for parsing token streams

          + [grammar::me\_vm](tcllib/files/modules/grammar\_me/me\_vm\.md) Virtual machine for parsing token streams

          + [grammar::peg](tcllib/files/modules/grammar\_peg/peg\.md) Create and manipulate parsing expression grammars

          + [grammar::peg::interp](tcllib/files/modules/grammar\_peg/peg\_interp\.md) Interpreter for parsing expression grammars

      * [Hashes, checksums, and encryption]()

          + [aes](tcllib/files/modules/aes/aes\.md) Implementation of the AES block cipher

          + [blowfish](tcllib/files/modules/blowfish/blowfish\.md) Implementation of the Blowfish block cipher

          + [cksum](tcllib/files/modules/crc/cksum\.md) Calculate a cksum\(1\) compatible checksum

          + [crc16](tcllib/files/modules/crc/crc16\.md) Perform a 16bit Cyclic Redundancy Check

          + [crc32](tcllib/files/modules/crc/crc32\.md) Perform a 32bit Cyclic Redundancy Check

          + [des](tcllib/files/modules/des/des\.md) Implementation of the DES and triple\-DES ciphers

          + [md4](tcllib/files/modules/md4/md4\.md) MD4 Message\-Digest Algorithm

          + [md5](tcllib/files/modules/md5/md5\.md) MD5 Message\-Digest Algorithm

          + [md5crypt](tcllib/files/modules/md5crypt/md5crypt\.md) MD5\-based password encryption

          + [otp](tcllib/files/modules/otp/otp\.md) One\-Time Passwords

          + [pki](tcllib/files/modules/pki/pki\.md) Implementation of the public key cipher

          + [rc4](tcllib/files/modules/rc4/rc4\.md) Implementation of the RC4 stream cipher

          + [ripemd128](tcllib/files/modules/ripemd/ripemd128\.md) RIPEMD\-128 Message\-Digest Algorithm

          + [ripemd160](tcllib/files/modules/ripemd/ripemd160\.md) RIPEMD\-160 Message\-Digest Algorithm

          + [sha1](tcllib/files/modules/sha1/sha1\.md) SHA1 Message\-Digest Algorithm

          + [sha256](tcllib/files/modules/sha1/sha256\.md) SHA256 Message\-Digest Algorithm

          + [soundex](tcllib/files/modules/soundex/soundex\.md) Soundex

          + [sum](tcllib/files/modules/crc/sum\.md) Calculate a sum\(1\) compatible checksum

          + [tclDES](tcllib/files/modules/des/tcldes\.md) Implementation of the DES and triple\-DES ciphers

          + [tclDESjr](tcllib/files/modules/des/tcldesjr\.md) Implementation of the DES and triple\-DES ciphers

          + [uuid](tcllib/files/modules/uuid/uuid\.md) UUID generation and comparison

      * [Mathematics]()

          + [math](tcllib/files/modules/math/math\.md) Tcl Math Library

          + [math::bigfloat](tcllib/files/modules/math/bigfloat\.md) Arbitrary precision floating\-point numbers

          + [math::bignum](tcllib/files/modules/math/bignum\.md) Arbitrary precision integer numbers

          + [math::calculus](tcllib/files/modules/math/calculus\.md) Integration and ordinary differential equations

          + [math::calculus::romberg](tcllib/files/modules/math/romberg\.md) Romberg integration

          + [math::combinatorics](tcllib/files/modules/math/combinatorics\.md) Combinatorial functions in the Tcl Math Library

          + [math::complexnumbers](tcllib/files/modules/math/qcomplex\.md) Straightforward complex number package

          + [math::constants](tcllib/files/modules/math/constants\.md) Mathematical and numerical constants

          + [math::decimal](tcllib/files/modules/math/decimal\.md) General decimal arithmetic

          + [math::exact](tcllib/files/modules/math/exact\.md) Exact Real Arithmetic

          + [math::fourier](tcllib/files/modules/math/fourier\.md) Discrete and fast fourier transforms

          + [math::fuzzy](tcllib/files/modules/math/fuzzy\.md) Fuzzy comparison of floating\-point numbers

          + [math::geometry](tcllib/files/modules/math/math\_geometry\.md) Geometrical computations

          + [math::interpolate](tcllib/files/modules/math/interpolate\.md) Interpolation routines

          + [math::linearalgebra](tcllib/files/modules/math/linalg\.md) Linear Algebra

          + [math::numtheory](tcllib/files/modules/math/numtheory\.md) Number Theory

          + [math::optimize](tcllib/files/modules/math/optimize\.md) Optimisation routines

          + [math::PCA](tcllib/files/modules/math/pca\.md) Package for Principal Component Analysis

          + [math::polynomials](tcllib/files/modules/math/polynomials\.md) Polynomial functions

          + [math::quasirandom](tcllib/files/modules/math/quasirandom\.md) Quasi\-random points for integration and Monte Carlo type methods

          + [math::rationalfunctions](tcllib/files/modules/math/rational\_funcs\.md) Polynomial functions

          + [math::roman](tcllib/files/modules/math/roman\.md) Tools for creating and manipulating roman numerals

          + [math::special](tcllib/files/modules/math/special\.md) Special mathematical functions

          + [math::statistics](tcllib/files/modules/math/statistics\.md) Basic statistical functions and procedures

          + [math::trig](tcllib/files/modules/math/trig\.md) Trigonometric anf hyperbolic functions

          + [simulation::annealing](tcllib/files/modules/simulation/annealing\.md) Simulated annealing

          + [simulation::montecarlo](tcllib/files/modules/simulation/montecarlo\.md) Monte Carlo simulations

          + [simulation::random](tcllib/files/modules/simulation/simulation\_random\.md) Pseudo\-random number generators

      * [Networking]()

          + [asn](tcllib/files/modules/asn/asn\.md) ASN\.1 BER encoder/decoder

          + [autoproxy](tcllib/files/modules/http/autoproxy\.md) Automatic HTTP proxy usage and authentication

          + [bee](tcllib/files/modules/bee/bee\.md) BitTorrent Serialization Format Encoder/Decoder

          + [dns](tcllib/files/modules/dns/tcllib\_dns\.md) Tcl Domain Name Service Client

          + [ftp](tcllib/files/modules/ftp/ftp\.md) Client\-side tcl implementation of the ftp protocol

          + [ftp::geturl](tcllib/files/modules/ftp/ftp\_geturl\.md) Uri handler for ftp urls

          + [ftpd](tcllib/files/modules/ftpd/ftpd\.md) Tcl FTP server implementation

          + [httpd](tcllib/files/modules/httpd/httpd\.md) A TclOO and coroutine based web server

          + [ident](tcllib/files/modules/ident/ident\.md) Ident protocol client

          + [imap4](tcllib/files/modules/imap4/imap4\.md) imap client\-side tcl implementation of imap protocol

          + [irc](tcllib/files/modules/irc/irc\.md) Create IRC connection and interface\.

          + [ldap](tcllib/files/modules/ldap/ldap\.md) LDAP client

          + [ldapx](tcllib/files/modules/ldap/ldapx\.md) LDAP extended object interface

          + [nameserv](tcllib/files/modules/nns/nns\_client\.md) Name service facility, Client

          + [nameserv::auto](tcllib/files/modules/nns/nns\_auto\.md) Name service facility, Client Extension

          + [nameserv::common](tcllib/files/modules/nns/nns\_common\.md) Name service facility, shared definitions

          + [nameserv::protocol](tcllib/files/modules/nns/nns\_protocol\.md) Name service facility, client/server protocol

          + [nameserv::server](tcllib/files/modules/nns/nns\_server\.md) Name service facility, Server

          + [nmea](tcllib/files/modules/nmea/nmea\.md) Process NMEA data

          + [nns](tcllib/files/apps/nns\.md) Name service facility, Commandline Client Application

          + [nns\_intro](tcllib/files/modules/nns/nns\_intro\.md) Name service facility, introduction

          + [nnsd](tcllib/files/apps/nnsd\.md) Name service facility, Commandline Server Application

          + [nnslog](tcllib/files/apps/nnslog\.md) Name service facility, Commandline Logging Client Application

          + [nntp](tcllib/files/modules/nntp/nntp\.md) Tcl client for the NNTP protocol

          + [ntp\_time](tcllib/files/modules/ntp/ntp\_time\.md) Tcl Time Service Client

          + [oauth](tcllib/files/modules/oauth/oauth\.md) oauth API base signature

          + [picoirc](tcllib/files/modules/irc/picoirc\.md) Small and simple embeddable IRC client\.

          + [pop3](tcllib/files/modules/pop3/pop3\.md) Tcl client for POP3 email protocol

          + [pop3d](tcllib/files/modules/pop3d/pop3d\.md) Tcl POP3 server implementation

          + [pop3d::dbox](tcllib/files/modules/pop3d/pop3d\_dbox\.md) Simple mailbox database for pop3d

          + [pop3d::udb](tcllib/files/modules/pop3d/pop3d\_udb\.md) Simple user database for pop3d

          + [S3](tcllib/files/modules/amazon\-s3/S3\.md) Amazon S3 Web Service Interface

          + [SASL](tcllib/files/modules/sasl/sasl\.md) Implementation of SASL mechanisms for Tcl

          + [SASL::NTLM](tcllib/files/modules/sasl/ntlm\.md) Implementation of SASL NTLM mechanism for Tcl

          + [SASL::SCRAM](tcllib/files/modules/sasl/scram\.md) Implementation of SASL SCRAM mechanism for Tcl

          + [SASL::XGoogleToken](tcllib/files/modules/sasl/gtoken\.md) Implementation of SASL NTLM mechanism for Tcl

          + [smtp](tcllib/files/modules/mime/smtp\.md) Client\-side tcl implementation of the smtp protocol

          + [smtpd](tcllib/files/modules/smtpd/smtpd\.md) Tcl SMTP server implementation

          + [tcllib\_ip](tcllib/files/modules/dns/tcllib\_ip\.md) IPv4 and IPv6 address manipulation

          + [udpcluster](tcllib/files/modules/udpcluster/udpcluster\.md) UDP Peer\-to\-Peer cluster

          + [uri](tcllib/files/modules/uri/uri\.md) URI utilities

          + [uri\_urn](tcllib/files/modules/uri/urn\-scheme\.md) URI utilities, URN scheme

          + [websocket](tcllib/files/modules/websocket/websocket\.md) Tcl implementation of the websocket protocol

      * [Page Parser Generator]()

          + [page](tcllib/files/apps/page\.md) Parser Generator

          + [page\_intro](tcllib/files/modules/page/page\_intro\.md) page introduction

          + [page\_pluginmgr](tcllib/files/modules/page/page\_pluginmgr\.md) page plugin manager

          + [page\_util\_flow](tcllib/files/modules/page/page\_util\_flow\.md) page dataflow/treewalker utility

          + [page\_util\_norm\_lemon](tcllib/files/modules/page/page\_util\_norm\_lemon\.md) page AST normalization, LEMON

          + [page\_util\_norm\_peg](tcllib/files/modules/page/page\_util\_norm\_peg\.md) page AST normalization, PEG

          + [page\_util\_peg](tcllib/files/modules/page/page\_util\_peg\.md) page PEG transformation utilities

          + [page\_util\_quote](tcllib/files/modules/page/page\_util\_quote\.md) page character quoting utilities

      * [Parsing and Grammars]()

          + [pt](tcllib/files/apps/pt\.md) Parser Tools Application

          + [pt::ast](tcllib/files/modules/pt/pt\_astree\.md) Abstract Syntax Tree Serialization

          + [pt::cparam::configuration::critcl](tcllib/files/modules/pt/pt\_cparam\_config\_critcl\.md) C/PARAM, Canned configuration, Critcl

          + [pt::cparam::configuration::tea](tcllib/files/modules/pt/pt\_cparam\_config\_tea\.md) C/PARAM, Canned configuration, TEA

          + [pt::json\_language](tcllib/files/modules/pt/pt\_json\_language\.md) The JSON Grammar Exchange Format

          + [pt::param](tcllib/files/modules/pt/pt\_param\.md) PackRat Machine Specification

          + [pt::pe](tcllib/files/modules/pt/pt\_pexpression\.md) Parsing Expression Serialization

          + [pt::pe::op](tcllib/files/modules/pt/pt\_pexpr\_op\.md) Parsing Expression Utilities

          + [pt::peg](tcllib/files/modules/pt/pt\_pegrammar\.md) Parsing Expression Grammar Serialization

          + [pt::peg::container](tcllib/files/modules/pt/pt\_peg\_container\.md) PEG Storage

          + [pt::peg::container::peg](tcllib/files/modules/pt/pt\_peg\_container\_peg\.md) PEG Storage\. Canned PEG grammar specification

          + [pt::peg::export](tcllib/files/modules/pt/pt\_peg\_export\.md) PEG Export

          + [pt::peg::export::container](tcllib/files/modules/pt/pt\_peg\_export\_container\.md) PEG Export Plugin\. Write CONTAINER format

          + [pt::peg::export::json](tcllib/files/modules/pt/pt\_peg\_export\_json\.md) PEG Export Plugin\. Write JSON format

          + [pt::peg::export::peg](tcllib/files/modules/pt/pt\_peg\_export\_peg\.md) PEG Export Plugin\. Write PEG format

          + [pt::peg::from::container](tcllib/files/modules/pt/pt\_peg\_from\_container\.md) PEG Conversion\. From CONTAINER format

          + [pt::peg::from::json](tcllib/files/modules/pt/pt\_peg\_from\_json\.md) PEG Conversion\. Read JSON format

          + [pt::peg::from::peg](tcllib/files/modules/pt/pt\_peg\_from\_peg\.md) PEG Conversion\. Read PEG format

          + [pt::peg::import](tcllib/files/modules/pt/pt\_peg\_import\.md) PEG Import

          + [pt::peg::import::container](tcllib/files/modules/pt/pt\_peg\_import\_container\.md) PEG Import Plugin\. From CONTAINER format

          + [pt::peg::import::json](tcllib/files/modules/pt/pt\_peg\_import\_json\.md) PEG Import Plugin\. Read JSON format

          + [pt::peg::import::peg](tcllib/files/modules/pt/pt\_peg\_import\_peg\.md) PEG Import Plugin\. Read PEG format

          + [pt::peg::interp](tcllib/files/modules/pt/pt\_peg\_interp\.md) Interpreter for parsing expression grammars

          + [pt::peg::to::container](tcllib/files/modules/pt/pt\_peg\_to\_container\.md) PEG Conversion\. Write CONTAINER format

          + [pt::peg::to::cparam](tcllib/files/modules/pt/pt\_peg\_to\_cparam\.md) PEG Conversion\. Write CPARAM format

          + [pt::peg::to::json](tcllib/files/modules/pt/pt\_peg\_to\_json\.md) PEG Conversion\. Write JSON format

          + [pt::peg::to::param](tcllib/files/modules/pt/pt\_peg\_to\_param\.md) PEG Conversion\. Write PARAM format

          + [pt::peg::to::peg](tcllib/files/modules/pt/pt\_peg\_to\_peg\.md) PEG Conversion\. Write PEG format

          + [pt::peg::to::tclparam](tcllib/files/modules/pt/pt\_peg\_to\_tclparam\.md) PEG Conversion\. Write TCLPARAM format

          + [pt::peg\_language](tcllib/files/modules/pt/pt\_peg\_language\.md) PEG Language Tutorial

          + [pt::pegrammar](tcllib/files/modules/pt/pt\_peg\_introduction\.md) Introduction to Parsing Expression Grammars

          + [pt::pgen](tcllib/files/modules/pt/pt\_pgen\.md) Parser Generator

          + [pt::rde](tcllib/files/modules/pt/pt\_rdengine\.md) Parsing Runtime Support, PARAM based

          + [pt::tclparam::configuration::nx](tcllib/files/modules/pt/pt\_tclparam\_config\_nx\.md) Tcl/PARAM, Canned configuration, NX

          + [pt::tclparam::configuration::snit](tcllib/files/modules/pt/pt\_tclparam\_config\_snit\.md) Tcl/PARAM, Canned configuration, Snit

          + [pt::tclparam::configuration::tcloo](tcllib/files/modules/pt/pt\_tclparam\_config\_tcloo\.md) Tcl/PARAM, Canned configuration, Tcloo

          + [pt::util](tcllib/files/modules/pt/pt\_util\.md) General utilities

          + [pt\_export\_api](tcllib/files/modules/pt/pt\_to\_api\.md) Parser Tools Export API

          + [pt\_import\_api](tcllib/files/modules/pt/pt\_from\_api\.md) Parser Tools Import API

          + [pt\_introduction](tcllib/files/modules/pt/pt\_introduction\.md) Introduction to Parser Tools

          + [pt\_parse\_peg](tcllib/files/modules/pt/pt\_parse\_peg\.md) Parser Tools PEG Parser

          + [pt\_parser\_api](tcllib/files/modules/pt/pt\_parser\_api\.md) Parser API

          + [pt\_peg\_op](tcllib/files/modules/pt/pt\_peg\_op\.md) Parser Tools PE Grammar Utility Operations

      * [Procedures, arguments, parameters, options]()

          + [tepam](tcllib/files/modules/tepam/tepam\_introduction\.md) An introduction into TEPAM, Tcl's Enhanced Procedure and Argument Manager

          + [tepam::procedure](tcllib/files/modules/tepam/tepam\_procedure\.md) TEPAM procedure, reference manual

      * [Programming tools]()

          + [clay](tcllib/files/modules/clay/clay\.md) A minimalist framework for large scale OO Projects

          + [cmdline](tcllib/files/modules/cmdline/cmdline\.md) Procedures to process command lines and options\.

          + [comm](tcllib/files/modules/comm/comm\.md) A remote communication facility for Tcl \(8\.3 and later\)

          + [comm\_wire](tcllib/files/modules/comm/comm\_wire\.md) The comm wire protocol

          + [control](tcllib/files/modules/control/control\.md) Procedures for control flow structures\.

          + [deleg\_method](tcllib/files/modules/interp/deleg\_method\.md) Creation of comm delegates \(snit methods\)

          + [deleg\_proc](tcllib/files/modules/interp/deleg\_proc\.md) Creation of comm delegates \(procedures\)

          + [fileutil](tcllib/files/modules/fileutil/fileutil\.md) Procedures implementing some file utilities

          + [fileutil::magic::cfront](tcllib/files/modules/fumagic/cfront\.md) Generator core for compiler of magic\(5\) files

          + [fileutil::magic::cgen](tcllib/files/modules/fumagic/cgen\.md) Generator core for compiler of magic\(5\) files

          + [fileutil::magic::filetype](tcllib/files/modules/fumagic/filetypes\.md) Procedures implementing file\-type recognition

          + [fileutil::magic::rt](tcllib/files/modules/fumagic/rtcore\.md) Runtime core for file type recognition engines written in pure Tcl

          + [fileutil::multi](tcllib/files/modules/fileutil/multi\.md) Multi\-file operation, scatter/gather, standard object

          + [fileutil::multi::op](tcllib/files/modules/fileutil/multiop\.md) Multi\-file operation, scatter/gather

          + [fileutil\_traverse](tcllib/files/modules/fileutil/traverse\.md) Iterative directory traversal

          + [hook](tcllib/files/modules/hook/hook\.md) Hooks

          + [interp](tcllib/files/modules/interp/tcllib\_interp\.md) Interp creation and aliasing

          + [log](tcllib/files/modules/log/log\.md) Procedures to log messages of libraries and applications\.

          + [logger](tcllib/files/modules/log/logger\.md) System to control logging of events\.

          + [logger::appender](tcllib/files/modules/log/loggerAppender\.md) Collection of predefined appenders for logger

          + [logger::utils](tcllib/files/modules/log/loggerUtils\.md) Utilities for logger

          + [multiplexer](tcllib/files/modules/multiplexer/multiplexer\.md) One\-to\-many communication with sockets\.

          + [pluginmgr](tcllib/files/modules/pluginmgr/pluginmgr\.md) Manage a plugin

          + [profiler](tcllib/files/modules/profiler/profiler\.md) Tcl source code profiler

          + [snit](tcllib/files/modules/snit/snit\.md) Snit's Not Incr Tcl

          + [snitfaq](tcllib/files/modules/snit/snitfaq\.md) Snit Frequently Asked Questions

          + [stooop](tcllib/files/modules/stooop/stooop\.md) Object oriented extension\.

          + [switched](tcllib/files/modules/stooop/switched\.md) switch/option management\.

          + [tie](tcllib/files/modules/tie/tie\.md) Array persistence

          + [tie](tcllib/files/modules/tie/tie\_std\.md) Array persistence, standard data sources

          + [uevent](tcllib/files/modules/uev/uevent\.md) User events

          + [wip](tcllib/files/modules/wip/wip\.md) Word Interpreter

      * [System]()

          + [cron](tcllib/files/modules/cron/cron\.md) Tool for automating the period callback of commands

          + [nettool](tcllib/files/modules/nettool/nettool\.md) Tools for networked applications

          + [processman](tcllib/files/modules/processman/processman\.md) Tool for automating the period callback of commands

      * [TclOO]()

          + [oometa](tcllib/files/modules/oometa/oometa\.md) oo::meta A data registry for classess

          + [practcl](tcllib/files/modules/practcl/practcl\.md) The Practcl Module

          + [tool](tcllib/files/modules/tool/tool\.md) TclOO Library \(TOOL\) Framework

      * [Terminal control]()

          + [term](tcllib/files/modules/term/term\.md) General terminal control

          + [term::ansi::code](tcllib/files/modules/term/ansi\_code\.md) Helper for control sequences

          + [term::ansi::code::attr](tcllib/files/modules/term/ansi\_cattr\.md) ANSI attribute sequences

          + [term::ansi::code::ctrl](tcllib/files/modules/term/ansi\_cctrl\.md) ANSI control sequences

          + [term::ansi::code::macros](tcllib/files/modules/term/ansi\_cmacros\.md) Macro sequences

          + [term::ansi::ctrl::unix](tcllib/files/modules/term/ansi\_ctrlu\.md) Control operations and queries

          + [term::ansi::send](tcllib/files/modules/term/ansi\_send\.md) Output of ANSI control sequences to terminals

          + [term::interact::menu](tcllib/files/modules/term/imenu\.md) Terminal widget, menu

          + [term::interact::pager](tcllib/files/modules/term/ipager\.md) Terminal widget, paging

          + [term::receive](tcllib/files/modules/term/receive\.md) General input from terminals

          + [term::receive::bind](tcllib/files/modules/term/term\_bind\.md) Keyboard dispatch from terminals

          + [term::send](tcllib/files/modules/term/term\_send\.md) General output to terminals

      * [Text formatter plugin]()

          + [doctools::idx::export::docidx](tcllib/files/modules/doctools2idx/export\_docidx\.md) docidx export plugin

          + [doctools::idx::export::html](tcllib/files/modules/doctools2idx/idx\_export\_html\.md) HTML export plugin

          + [doctools::idx::export::json](tcllib/files/modules/doctools2idx/idx\_export\_json\.md) JSON export plugin

          + [doctools::idx::export::nroff](tcllib/files/modules/doctools2idx/idx\_export\_nroff\.md) nroff export plugin

          + [doctools::idx::export::text](tcllib/files/modules/doctools2idx/idx\_export\_text\.md) plain text export plugin

          + [doctools::idx::export::wiki](tcllib/files/modules/doctools2idx/idx\_export\_wiki\.md) wiki export plugin

          + [doctools::idx::import::docidx](tcllib/files/modules/doctools2idx/import\_docidx\.md) docidx import plugin

          + [doctools::idx::import::json](tcllib/files/modules/doctools2idx/idx\_import\_json\.md) JSON import plugin

          + [doctools::toc::export::doctoc](tcllib/files/modules/doctools2toc/export\_doctoc\.md) doctoc export plugin

          + [doctools::toc::export::html](tcllib/files/modules/doctools2toc/toc\_export\_html\.md) HTML export plugin

          + [doctools::toc::export::json](tcllib/files/modules/doctools2toc/toc\_export\_json\.md) JSON export plugin

          + [doctools::toc::export::nroff](tcllib/files/modules/doctools2toc/toc\_export\_nroff\.md) nroff export plugin

          + [doctools::toc::export::text](tcllib/files/modules/doctools2toc/toc\_export\_text\.md) plain text export plugin

          + [doctools::toc::export::wiki](tcllib/files/modules/doctools2toc/toc\_export\_wiki\.md) wiki export plugin

          + [doctools::toc::import::doctoc](tcllib/files/modules/doctools2toc/import\_doctoc\.md) doctoc import plugin

          + [doctools::toc::import::json](tcllib/files/modules/doctools2toc/toc\_import\_json\.md) JSON import plugin

      * [Text processing]()

          + [ascii85](tcllib/files/modules/base64/ascii85\.md) ascii85\-encode/decode binary data

          + [base32](tcllib/files/modules/base32/base32\.md) base32 standard encoding

          + [base32::core](tcllib/files/modules/base32/base32core\.md) Expanding basic base32 maps

          + [base32::hex](tcllib/files/modules/base32/base32hex\.md) base32 extended hex encoding

          + [base64](tcllib/files/modules/base64/base64\.md) base64\-encode/decode binary data

          + [bibtex](tcllib/files/modules/bibtex/bibtex\.md) Parse bibtex files

          + [clock\_iso8601](tcllib/files/modules/clock/iso8601\.md) Parsing ISO 8601 dates/times

          + [clock\_rfc2822](tcllib/files/modules/clock/rfc2822\.md) Parsing ISO 8601 dates/times

          + [csv](tcllib/files/modules/csv/csv\.md) Procedures to handle CSV data\.

          + [htmlparse](tcllib/files/modules/htmlparse/htmlparse\.md) Procedures to parse HTML strings

          + [inifile](tcllib/files/modules/inifile/ini\.md) Parsing of Windows INI files

          + [markdown](tcllib/files/modules/markdown/markdown\.md) Converts Markdown text to HTML

          + [mime](tcllib/files/modules/mime/mime\.md) Manipulation of MIME body parts

          + [rcs](tcllib/files/modules/rcs/rcs\.md) RCS low level utilities

          + [string::token](tcllib/files/modules/string/token\.md) Regex based iterative lexing

          + [string::token::shell](tcllib/files/modules/string/token\_shell\.md) Parsing of shell command line

          + [textutil](tcllib/files/modules/textutil/textutil\.md) Procedures to manipulate texts and strings\.

          + [textutil::adjust](tcllib/files/modules/textutil/adjust\.md) Procedures to adjust, indent, and undent paragraphs

          + [textutil::patch](tcllib/files/modules/textutil/patch\.md) Application of uni\-diff patches to directory trees

          + [textutil::repeat](tcllib/files/modules/textutil/repeat\.md) Procedures to repeat strings\.

          + [textutil::split](tcllib/files/modules/textutil/textutil\_split\.md) Procedures to split texts

          + [textutil::string](tcllib/files/modules/textutil/textutil\_string\.md) Procedures to manipulate texts and strings\.

          + [textutil::tabify](tcllib/files/modules/textutil/tabify\.md) Procedures to \(un\)tabify strings

          + [textutil::trim](tcllib/files/modules/textutil/trim\.md) Procedures to trim strings

          + [uuencode](tcllib/files/modules/base64/uuencode\.md) UU\-encode/decode binary data

          + [xsxp](tcllib/files/modules/amazon\-s3/xsxp\.md) eXtremely Simple Xml Parser

          + [yencode](tcllib/files/modules/base64/yencode\.md) Y\-encode/decode binary data

      * [Transfer module]()

          + [transfer::connect](tcllib/files/modules/transfer/connect\.md) Connection setup

          + [transfer::copy](tcllib/files/modules/transfer/copyops\.md) Data transfer foundation

          + [transfer::copy::queue](tcllib/files/modules/transfer/tqueue\.md) Queued transfers

          + [transfer::data::destination](tcllib/files/modules/transfer/ddest\.md) Data destination

          + [transfer::data::source](tcllib/files/modules/transfer/dsource\.md) Data source

          + [transfer::receiver](tcllib/files/modules/transfer/receiver\.md) Data source

          + [transfer::transmitter](tcllib/files/modules/transfer/transmitter\.md) Data source

      * [Unfiled]()

          + [cache::async](tcllib/files/modules/cache/async\.md) Asynchronous in\-memory cache

          + [fileutil::paths](tcllib/files/modules/fileutil/paths\.md) Manage search path pools

          + [generator](tcllib/files/modules/generator/generator\.md) Procedures for creating and using generators\.

          + [huddle](tcllib/files/modules/yaml/huddle\.md) Create and manipulate huddle object

          + [map::geocode::nominatim](tcllib/files/modules/map/map\_geocode\_nominatim\.md) Resolving geographical names with a Nominatim service

          + [map::slippy](tcllib/files/modules/map/map\_slippy\.md) Common code for slippy based map packages

          + [map::slippy::cache](tcllib/files/modules/map/map\_slippy\_cache\.md) Management of a tile cache in the local filesystem

          + [map::slippy::fetcher](tcllib/files/modules/map/map\_slippy\_fetcher\.md) Accessing a server providing tiles for slippy\-based maps

          + [mapproj](tcllib/files/modules/mapproj/mapproj\.md) Map projection routines

          + [math::calculus::symdiff](tcllib/files/modules/math/symdiff\.md) Symbolic differentiation for Tcl

          + [namespacex](tcllib/files/modules/namespacex/namespacex\.md) Namespace utility commands

          + [rest](tcllib/files/modules/rest/rest\.md) define REST web APIs and call them inline or asychronously

          + [stringprep](tcllib/files/modules/stringprep/stringprep\.md) Implementation of stringprep

          + [stringprep::data](tcllib/files/modules/stringprep/stringprep\_data\.md) stringprep data tables, generated, internal

          + [struct::map](tcllib/files/modules/struct/struct\_map\.md) Manage key/value maps

          + [tclrep/machineparameters](tcllib/files/modules/math/machineparameters\.md) Compute double precision machine parameters\.

          + [uevent::onidle](tcllib/files/modules/uev/uevent\_onidle\.md) Request merging and deferal to idle time

          + [unicode](tcllib/files/modules/stringprep/unicode\.md) Implementation of Unicode normalization

          + [unicode::data](tcllib/files/modules/stringprep/unicode\_data\.md) unicode data tables, generated, internal

          + [units](tcllib/files/modules/units/units\.md) unit conversion

          + [yaml](tcllib/files/modules/yaml/yaml\.md) YAML Format Encoder/Decoder

      * [Utilities]()

          + [dicttool](tcllib/files/modules/dicttool/dicttool\.md) Dictionary Tools

      * [Utility]()

          + [defer](tcllib/files/modules/defer/defer\.md) Defered execution

          + [lambda](tcllib/files/modules/lambda/lambda\.md) Utility commands for anonymous procedures

          + [lazyset](tcllib/files/modules/lazyset/lazyset\.md) Lazy evaluation

          + [oo::util](tcllib/files/modules/ooutil/ooutil\.md) Utility commands for TclOO

          + [oo::util](tcllib/files/modules/tool/meta\.md) Utility commands for TclOO

          + [throw](tcllib/files/modules/try/tcllib\_throw\.md) throw \- Throw an error exception with a message

          + [tool::dict\_ensemble](tcllib/files/modules/tool/tool\_dict\_ensemble\.md) Dictionary Tools

          + [try](tcllib/files/modules/try/tcllib\_try\.md) try \- Trap and process errors and exceptions

      * [Validation, Type checking]()

          + [valtype::common](tcllib/files/modules/valtype/valtype\_common\.md) Validation, common code

          + [valtype::creditcard::amex](tcllib/files/modules/valtype/cc\_amex\.md) Validation for AMEX creditcard number

          + [valtype::creditcard::discover](tcllib/files/modules/valtype/cc\_discover\.md) Validation for Discover creditcard number

          + [valtype::creditcard::mastercard](tcllib/files/modules/valtype/cc\_mastercard\.md) Validation for Mastercard creditcard number

          + [valtype::creditcard::visa](tcllib/files/modules/valtype/cc\_visa\.md) Validation for VISA creditcard number

          + [valtype::gs1::ean13](tcllib/files/modules/valtype/ean13\.md) Validation for EAN13

          + [valtype::iban](tcllib/files/modules/valtype/iban\.md) Validation for IBAN

          + [valtype::imei](tcllib/files/modules/valtype/imei\.md) Validation for IMEI

          + [valtype::isbn](tcllib/files/modules/valtype/isbn\.md) Validation for ISBN

          + [valtype::luhn](tcllib/files/modules/valtype/luhn\.md) Validation for plain number with a LUHN checkdigit

          + [valtype::luhn5](tcllib/files/modules/valtype/luhn5\.md) Validation for plain number with a LUHN5 checkdigit

          + [valtype::usnpi](tcllib/files/modules/valtype/usnpi\.md) Validation for USNPI

          + [valtype::verhoeff](tcllib/files/modules/valtype/verhoeff\.md) Validation for plain number with a VERHOEFF checkdigit