'\"
-.TH "valtype::iban" n 1\&.7 tcllib "Validation types"
+.TH "valtype::iban" n 1\&.8 tcllib "Validation types"
.\" The -*- nroff -*- definitions below are for supplemental macros used
.\" in Tcl/Tk manual entries.
.\"
@@ -280,7 +280,7 @@ package require \fBsnit 2\fR
.sp
package require \fBvaltype::common \fR
.sp
-package require \fBvaltype::iban ?1\&.7?\fR
+package require \fBvaltype::iban ?1\&.8?\fR
.sp
\fBvaltype::iban\fR \fBvalidate\fR \fIvalue\fR
.sp
diff --git a/idoc/man/files/modules/websocket/websocket.n b/idoc/man/files/modules/websocket/websocket.n
index 224ea43bf2..634fb5da11 100644
--- a/idoc/man/files/modules/websocket/websocket.n
+++ b/idoc/man/files/modules/websocket/websocket.n
@@ -1,7 +1,7 @@
'\"
'\" Generated from file 'websocket\&.man' by tcllib/doctools with format 'nroff'
'\"
-.TH "websocket" n 1\&.4\&.2 tcllib "websocket client and server"
+.TH "websocket" n 1\&.5 tcllib "websocket client and server"
.\" The -*- nroff -*- definitions below are for supplemental macros used
.\" in Tcl/Tk manual entries.
.\"
@@ -273,7 +273,7 @@ Database Class: \\fB\\$3\\fR
.SH NAME
websocket \- Tcl implementation of the websocket protocol
.SH SYNOPSIS
-package require \fBTcl 8\&.4\fR
+package require \fBTcl 8\&.6\fR
.sp
package require \fBhttp 2\&.7\fR
.sp
@@ -283,7 +283,7 @@ package require \fBsha1 \fR
.sp
package require \fBbase64 \fR
.sp
-package require \fBwebsocket ?1\&.4\&.2?\fR
+package require \fBwebsocket ?1\&.5?\fR
.sp
\fB::websocket::open\fR \fIurl\fR \fIhandler\fR ?\fIoptions\fR?
.sp
@@ -389,6 +389,9 @@ Complete binary message
\fBping\fR
Incoming ping message
.TP
+\fBpong\fR
+Response to incoming ping message
+.TP
\fBconnect\fR
Notification of successful connection to server
.TP
@@ -397,12 +400,18 @@ Disconnection from remote end
.TP
\fBclose\fR
Pending closure of connection
+.TP
+\fBtimeout\fR
+Notification of connection timeout
+.TP
+\fBerror\fR
+Notification of error condition
.RE
.TP
\fImsg\fR
Will contain the data of the message, whenever this is relevant,
-i\&.e\&. when the \fItype\fR is \fBtext\fR, \fBbinary\fR or
-\fBping\fR and whenever there is data available\&.
+i\&.e\&. when the \fItype\fR is \fBtext\fR, \fBbinary\fR,
+\fBping\fR or \fBpong\fR and whenever there is data available\&.
.PP
.SH API
.TP
@@ -444,7 +453,8 @@ used\&.
-protocol
This option specifies a list of application protocols to handshake
with the server\&. This protocols might help the server triggering
-application specific features\&.
+application specific features\&. The http::geturl option -protocol is
+used internally by the websocket library and cannot be used\&.
.TP
-timeout
This option is supported, but will implemented as part of the library
@@ -640,18 +650,19 @@ TLS handshake error
.PP
.SH EXAMPLES
.PP
-The following example opens a websocket connection to the echo
+The following example script is a client that opens a websocket
+connection to an echo
service, waits 400ms to ensure that the connection is really
established and sends a single textual message which should be echoed
back by the echo service\&. A real example would probably use the
\fBconnect\fR callback to know when connection to the remote
server has been establish and would only send data at that time\&.
+Finally the script closes the connection\&.
.CS
package require websocket
::websocket::loglevel debug
-
proc handler { sock type msg } {
switch -glob -nocase -- $type {
co* {
@@ -666,18 +677,18 @@ proc handler { sock type msg } {
}
}
-
proc test { sock } {
puts "[::websocket::conninfo $sock type] from [::websocket::conninfo $sock sockname] to [::websocket::conninfo $sock peername]"
::websocket::send $sock text "Testing, testing\&.\&.\&."
+ after 2000 ::websocket::close $sock
}
-
-set sock [::websocket::open ws://echo\&.websocket\&.org/ handler]
+set sock [::websocket::open ws://ws\&.ifelse\&.io/ handler]
after 400 test $sock
vwait forever
.CE
+Example code for a websocket server is provided in the Tcllib directory "examples/websocket"\&.
.SH "TLS SECURITY CONSIDERATIONS"
.PP
This package uses the \fBTLS\fR package to handle the
diff --git a/idoc/man/files/modules/zip/mkzip.n b/idoc/man/files/modules/zip/mkzip.n
index b4aad46526..721b39c435 100644
--- a/idoc/man/files/modules/zip/mkzip.n
+++ b/idoc/man/files/modules/zip/mkzip.n
@@ -2,7 +2,7 @@
'\" Generated from file 'mkzip\&.man' by tcllib/doctools with format 'nroff'
'\" Copyright (c) 2009 Pat Thoyts
'\"
-.TH "zipfile::mkzip" n 1\&.2\&.1 tcllib "Zip archive creation"
+.TH "zipfile::mkzip" n 1\&.2\&.2 tcllib "Zip archive creation"
.\" The -*- nroff -*- definitions below are for supplemental macros used
.\" in Tcl/Tk manual entries.
.\"
@@ -276,9 +276,9 @@ zipfile::mkzip \- Build a zip archive
.SH SYNOPSIS
package require \fBTcl 8\&.6\fR
.sp
-package require \fBzipfile::mkzip ?1\&.2\&.1?\fR
+package require \fBzipfile::mkzip ?1\&.2\&.2?\fR
.sp
-\fB::zipfile::mkzip::mkzip\fR \fIzipfile\fR ?\fB-zipkit\fR? ?\fB-runtime\fR \fIprefix\fR? ?\fB-comment\fR \fIstring\fR? ?\fB-directory\fR \fIrootpath\fR? ?\fB-exclude\fR \fIexclude\fR? ?\fB--\fR? ?\fIpath\fR\&.\&.\&.?
+\fB::zipfile::mkzip::mkzip\fR \fIzipfile\fR ?\fB-zipkit\fR? ?\fB-runtime\fR \fIprefix\fR? ?\fB-comment\fR \fIstring\fR? ?\fB-directory\fR \fIrootpath\fR? ?\fB-prepend-base-directory\fR \fIbool\fR? ?\fB-exclude\fR \fIexclude\fR? ?\fB--\fR? ?\fIpath\fR\&.\&.\&.?
.sp
.BE
.SH DESCRIPTION
@@ -287,7 +287,7 @@ This package utilizes the zlib functions in Tcl 8\&.6 to build zip
archives\&.
.SH API
.TP
-\fB::zipfile::mkzip::mkzip\fR \fIzipfile\fR ?\fB-zipkit\fR? ?\fB-runtime\fR \fIprefix\fR? ?\fB-comment\fR \fIstring\fR? ?\fB-directory\fR \fIrootpath\fR? ?\fB-exclude\fR \fIexclude\fR? ?\fB--\fR? ?\fIpath\fR\&.\&.\&.?
+\fB::zipfile::mkzip::mkzip\fR \fIzipfile\fR ?\fB-zipkit\fR? ?\fB-runtime\fR \fIprefix\fR? ?\fB-comment\fR \fIstring\fR? ?\fB-directory\fR \fIrootpath\fR? ?\fB-prepend-base-directory\fR \fIbool\fR? ?\fB-exclude\fR \fIexclude\fR? ?\fB--\fR? ?\fIpath\fR\&.\&.\&.?
From \fIhttp://wiki\&.tcl\&.tk/15158\fR
.sp
This command constructs a zip archive from a directory tree
@@ -344,6 +344,14 @@ archive\&.
This option specifies the directory to place into the generated
archive\&. If specified any argument \fIpath\fRs are \fIignored\fR\&.
.TP
+\fB-prepend-base-directory\fR bool
+When this option is set the tail of the \fB-directory\fR path is
+prepended to all paths added to the archive\&.
+.sp
+The option is ignored when option \fB-directory\fR is not specified\&.
+.sp
+By default this option is \fBfalse\fR\&.
+.TP
\fB-exclude\fR list
This option specifies a list of glob patterns\&. All paths matching at
least one of the patterns are not placed into the generated archive\&.
diff --git a/idoc/man/index.n b/idoc/man/index.n
index 31faa71711..47e54eabb1 100644
--- a/idoc/man/index.n
+++ b/idoc/man/index.n
@@ -2492,6 +2492,18 @@ term::ansi::send
\fBfiles/modules/term/term_send\&.n\fR
term::send
.RE
+character type
+.RS
+.TP
+\fBfiles/modules/textutil/wcswidth\&.n\fR
+textutil::wcswidth
+.RE
+character width
+.RS
+.TP
+\fBfiles/modules/textutil/wcswidth\&.n\fR
+textutil::wcswidth
+.RE
chat
.RS
.TP
@@ -4073,6 +4085,12 @@ domain name service
\fBfiles/modules/dns/tcllib_dns\&.n\fR
dns
.RE
+double-wide character
+.RS
+.TP
+\fBfiles/modules/textutil/wcswidth\&.n\fR
+textutil::wcswidth
+.RE
e
.RS
.TP
@@ -6689,9 +6707,6 @@ report
\fBfiles/modules/struct/matrix\&.n\fR
struct::matrix
.TP
-\fBfiles/modules/struct/matrix1\&.n\fR
-struct::matrix_v1
-.TP
\fBfiles/modules/struct/queue\&.n\fR
struct::queue
.TP
@@ -8227,6 +8242,9 @@ textutil::string
.TP
\fBfiles/modules/textutil/trim\&.n\fR
textutil::trim
+.TP
+\fBfiles/modules/textutil/wcswidth\&.n\fR
+textutil::wcswidth
.RE
prime
.RS
@@ -8908,6 +8926,9 @@ textutil::split
.TP
\fBfiles/modules/textutil/trim\&.n\fR
textutil::trim
+.TP
+\fBfiles/modules/textutil/wcswidth\&.n\fR
+textutil::wcswidth
.RE
regular grammar
.RS
@@ -10138,6 +10159,9 @@ textutil::tabify
.TP
\fBfiles/modules/textutil/trim\&.n\fR
textutil::trim
+.TP
+\fBfiles/modules/textutil/wcswidth\&.n\fR
+textutil::wcswidth
.RE
stringprep
.RS
diff --git a/idoc/man/toc.n b/idoc/man/toc.n
index e056e97b7d..e369193bec 100644
--- a/idoc/man/toc.n
+++ b/idoc/man/toc.n
@@ -1239,9 +1239,6 @@ tcllib
\fBstruct::matrix\fR
\fIfiles/modules/struct/matrix\&.n\fR: Create and manipulate matrix objects
.TP
-\fBstruct::matrix_v1\fR
-\fIfiles/modules/struct/matrix1\&.n\fR: Create and manipulate matrix objects
-.TP
\fBstruct::pool\fR
\fIfiles/modules/struct/pool\&.n\fR: Create and manipulate pool objects (of discrete items)
.TP
@@ -1473,6 +1470,9 @@ tcllib
\fBtextutil::trim\fR
\fIfiles/modules/textutil/trim\&.n\fR: Procedures to trim strings
.TP
+\fBtextutil::wcswidth\fR
+\fIfiles/modules/textutil/wcswidth\&.n\fR: Procedures to compute terminal width of strings
+.TP
\fBthrow\fR
\fIfiles/modules/try/tcllib_throw\&.n\fR: throw - Throw an error exception with a message
.TP
diff --git a/idoc/www/index.html b/idoc/www/index.html
index a33559a8f8..e95468140c 100644
--- a/idoc/www/index.html
+++ b/idoc/www/index.html
@@ -528,6 +528,16 @@ Keyword Index
term::ansi::send · term::send
+| character type |
+
+ textutil::wcswidth
+ |
+
+| character width |
+
+ textutil::wcswidth
+ |
+
| chat |
irc · multiplexer · picoirc
@@ -1206,6 +1216,11 @@ Keyword Index
dns
|
+| double-wide character |
+
+ textutil::wcswidth
+ |
+
| .dtx |
docstrip · docstrip_util · tcldocstrip
@@ -1213,172 +1228,172 @@ Keyword Index
|
-
+
| e |
math::constants
|
-
+
| EAN |
valtype::gs1::ean13 · valtype::isbn
|
-
+
| EAN13 |
valtype::gs1::ean13 · valtype::isbn
|
-
+
| earley |
grammar::aycock
|
-
+
| EBNF |
pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| eccentricity |
struct::graph::op
|
-
+
| edge |
struct::graph · struct::graph::op
|
-
+
| emacs |
doctools::changelog · doctools::cvs
|
-
+
| email |
imap4 · mime · pop3 · smtp
|
-
+
| emptiness |
struct::set
|
-
+
| empty interpreter |
interp
|
-
+
| EN |
doctools::msgcat::idx::en · doctools::msgcat::toc::en
|
-
+
| encoding |
ascii85 · base64 · uuencode · yencode
|
-
+
| encryption |
aes · blowfish · des · pki · rc4 · tcl::transform::otp · tcl::transform::rot · tclDES · tclDESjr
|
-
+
| entry mask |
tepam
|
-
+
| equal |
struct::list
|
-
+
| equality |
struct::list
|
-
+
| equivalence class |
struct::disjointset
|
-
+
| error |
throw · try
|
-
+
| error function |
math::special
|
-
+
| European Article Number |
valtype::gs1::ean13 · valtype::isbn
|
-
+
| event |
hook · uevent · uevent::onidle
|
-
+
| event management |
tcl::chan::events
|
-
+
| events |
coroutine · coroutine::auto
|
-
+
| examples |
bench_lang_intro · docidx_lang_faq · doctoc_lang_faq · doctools_lang_faq
|
-
+
| exception |
try
|
-
+
| exchange format |
huddle · json · json::write
|
-
+
| exclusion |
struct::set
|
-
+
| execution |
grammar::fa::dexec
|
-
+
| exif |
jpeg
|
-
+
| exit |
coroutine · coroutine::auto
|
-
+
| export |
doctools::html::cssdefaults · doctools::idx::export · doctools::idx::export::docidx · doctools::idx::export::html · doctools::idx::export::json · doctools::idx::export::nroff · doctools::idx::export::text · doctools::idx::export::wiki · doctools::nroff::man_macros · doctools::toc::export · doctools::toc::export::doctoc · doctools::toc::export::html · doctools::toc::export::json · doctools::toc::export::nroff · doctools::toc::export::text · doctools::toc::export::wiki · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg
|
-
+
| expression |
grammar::me_intro · grammar::peg · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| extended namespace |
namespacex
@@ -1386,212 +1401,212 @@ Keyword Index
|
-
+
| faq |
docidx_lang_faq · doctoc_lang_faq · doctools_lang_faq
|
-
+
| fetching information |
uri
|
-
+
| FFT |
math::fourier
|
-
+
| fifo |
tcl::chan::fifo · tcl::chan::fifo2 · tcl::chan::halfpipe
|
-
+
| figurate numbers |
math::figurate
|
-
+
| file |
tie · tie · uri
|
-
+
| file recognition |
fileutil::magic::cfront · fileutil::magic::cgen · fileutil::magic::filetype · fileutil::magic::rt
|
-
+
| file type |
fileutil::magic::cfront · fileutil::magic::cgen · fileutil::magic::filetype · fileutil::magic::rt
|
-
+
| file utilities |
fileutil · fileutil::magic::cfront · fileutil::magic::cgen · fileutil::magic::filetype · fileutil::magic::rt · fileutil::multi · fileutil::multi::op
|
-
+
| filesystem |
map::slippy::cache
|
-
+
| filter |
generator · struct::list
|
-
+
| filtering |
math::filters
|
-
+
| final |
try
|
-
+
| finance |
valtype::creditcard::amex · valtype::creditcard::discover · valtype::creditcard::mastercard · valtype::creditcard::visa · valtype::iban
|
-
+
| find |
struct::disjointset
|
-
+
| finite |
struct::pool
|
-
+
| finite automaton |
grammar::fa · grammar::fa::dacceptor · grammar::fa::dexec · grammar::fa::op
|
-
+
| FIPS 180-1 |
sha1 · sha256
|
-
+
| first permutation |
struct::list
|
-
+
| Fisher-Yates |
struct::list
|
-
+
| flatten |
struct::list
|
-
+
| floating-point |
math::bigfloat · math::fuzzy
|
-
+
| flow |
control
|
-
+
| flow network |
struct::graph::op
|
-
+
| folding |
struct::list
|
-
+
| foldl |
generator
|
-
+
| foldr |
generator
|
-
+
| foreach |
generator
|
-
+
| form |
html · ncgi
|
-
+
| format conversion |
pt::peg::from::json · pt::peg::from::peg · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam
|
-
+
| formatter |
doctools_plugin_apiref
|
-
+
| formatting |
bench::in · bench::out::csv · bench::out::text · doctools2idx_introduction · doctools2toc_introduction · doctools::idx · doctools::idx::export · doctools::toc · doctools::toc::export · textutil · textutil::adjust · textutil::string · textutil::tabify
|
-
+
| formatting engine |
docidx_plugin_apiref · doctoc_plugin_apiref · doctools_plugin_apiref
|
-
+
| fossil |
textutil::patch
|
-
+
| Fourier transform |
math::fourier
|
-
+
| FR |
doctools::msgcat::idx::fr · doctools::msgcat::toc::fr
|
-
+
| frame |
term::ansi::code::macros
|
-
+
| framework |
tool
|
-
+
| ftp |
ftp · ftp::geturl · ftpd · uri
|
-
+
| ftpd |
ftpd
|
-
+
| ftpserver |
ftpd
|
-
+
| full outer join |
struct::list
@@ -1599,107 +1614,107 @@ Keyword Index
|
-
+
| generate event |
uevent
|
-
+
| generate permutations |
struct::list
|
-
+
| generation |
doctools::idx · doctools::idx::export · doctools::toc · doctools::toc::export
|
-
+
| generator |
generator
|
-
+
| geocoding |
map::geocode::nominatim
|
-
+
| geodesy |
map::slippy · mapproj
|
-
+
| geography |
map::slippy
|
-
+
| get character |
term::receive
|
-
+
| gets |
coroutine · coroutine::auto
|
-
+
| git |
textutil::patch
|
-
+
| global |
coroutine · coroutine::auto
|
-
+
| golang |
defer
|
-
+
| gopher |
uri
|
-
+
| gps |
gpx · nmea
|
-
+
| gpx |
gpx
|
-
+
| grammar |
grammar::aycock · grammar::fa · grammar::fa::dacceptor · grammar::fa::dexec · grammar::fa::op · grammar::me::cpu · grammar::me::cpu::core · grammar::me::cpu::gasm · grammar::me::tcl · grammar::me_intro · grammar::me_vm · grammar::peg · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| graph |
grammar::me::cpu::gasm · struct::graph · struct::graph::op · struct::graph_v1 · struct::queue · struct::stack
|
-
+
| graph walking |
page_util_flow · page_util_norm_lemon · page_util_norm_peg
|
-
+
| green threads |
coroutine · coroutine::auto
|
-
+
| grep |
fileutil
|
-
+
| GUID |
uuid
@@ -1707,87 +1722,87 @@ Keyword Index
|
-
+
| hashing |
md4 · md5 · md5crypt · otp · ripemd128 · ripemd160 · sha1 · sha256
|
-
+
| heartbeat |
debug::heartbeat
|
-
+
| heuristic |
struct::graph::op
|
-
+
| hex |
base32::hex
|
-
+
| hexadecimal |
tcl::transform::hex
|
-
+
| histogram |
counter
|
-
+
| hook |
hook · uevent
|
-
+
| horspool |
grammar::aycock
|
-
+
| HTML |
doctools · doctools::html::cssdefaults · doctools::idx · doctools::idx · doctools::idx::export · doctools::idx::export::html · doctools::toc · doctools::toc · doctools::toc::export · doctools::toc::export::html · dtplite · mpexpand · pkg_dtplite
|
-
+
| html |
html · htmlparse · javascript · ncgi
|
-
+
| http |
autoproxy · httpd · map::geocode::nominatim · map::slippy::fetcher · uri · websocket
|
-
+
| httpd |
httpd
|
-
+
| https |
uri
|
-
+
| httpserver |
httpd
|
-
+
| huddle |
huddle · yaml
|
-
+
| human readable |
bench::in · bench::out::text
|
-
+
| hyphenation |
textutil · textutil::adjust
@@ -1795,222 +1810,222 @@ Keyword Index
|
-
+
| i18n |
doctools::msgcat · doctools::msgcat::idx::c · doctools::msgcat::idx::de · doctools::msgcat::idx::en · doctools::msgcat::idx::fr · doctools::msgcat::toc::c · doctools::msgcat::toc::de · doctools::msgcat::toc::en · doctools::msgcat::toc::fr
|
-
+
| IBAN |
valtype::iban
|
-
+
| ident |
ident
|
-
+
| identification |
ident
|
-
+
| identity |
tcl::transform::identity
|
-
+
| idle |
uevent::onidle
|
-
+
| image |
jpeg · png · tiff
|
-
+
| imap |
imap4
|
-
+
| IMEI |
valtype::imei
|
-
+
| import |
doctools::idx::import · doctools::idx::import::docidx · doctools::idx::import::json · doctools::toc::import · doctools::toc::import::doctoc · doctools::toc::import::json · pt::peg::import::json · pt::peg::import::peg
|
-
+
| in-memory channel |
tcl::chan::fifo · tcl::chan::fifo2 · tcl::chan::halfpipe · tcl::chan::memchan · tcl::chan::string · tcl::chan::variable
|
-
+
| in-order |
struct::tree
|
-
+
| inclusion |
struct::set
|
-
+
| Incr Tcl |
snit · snitfaq
|
-
+
| indenting |
textutil · textutil::adjust
|
-
+
| independent set |
struct::graph::op
|
-
+
| index |
docidx_intro · docidx_plugin_apiref · doctools2idx_introduction · doctools::idx · doctools::idx · doctools::idx::export · doctools::idx::export::docidx · doctools::idx::export::html · doctools::idx::export::json · doctools::idx::export::nroff · doctools::idx::export::text · doctools::idx::export::wiki · doctools::idx::import · doctools::idx::import::docidx · doctools::idx::import::json
|
-
+
| index formatter |
docidx_plugin_apiref
|
-
+
| info |
namespacex
|
-
+
| inner join |
struct::list
|
-
+
| input mode |
term::ansi::ctrl::unix
|
-
+
| integer |
math::roman
|
-
+
| integration |
math::calculus
|
-
+
| inter-thread communication |
tcl::chan::fifo2
|
-
+
| International Article Number |
valtype::gs1::ean13 · valtype::isbn
|
-
+
| International Bank Account Number |
valtype::iban
|
-
+
| International Mobile Equipment Identity |
valtype::imei
|
-
+
| International Standard Book Number |
valtype::isbn
|
-
+
| internationalization |
doctools::msgcat · doctools::msgcat::idx::c · doctools::msgcat::idx::de · doctools::msgcat::idx::en · doctools::msgcat::idx::fr · doctools::msgcat::toc::c · doctools::msgcat::toc::de · doctools::msgcat::toc::en · doctools::msgcat::toc::fr
|
-
+
| internet |
asn · ftp · ftp::geturl · imap4 · ldap · ldapx · mime · pop3d · pop3d::dbox · pop3d::udb · smtp · websocket
|
-
+
| internet address |
tcllib_ip
|
-
+
| interpolation |
math::interpolate
|
-
+
| interpreter |
deleg_method · deleg_proc · interp · wip
|
-
+
| intersection |
struct::set
|
-
+
| interval |
math::bigfloat
|
-
+
| ip |
tcllib_ip
|
-
+
| ipc |
comm · comm_wire
|
-
+
| ipv4 |
tcllib_ip
|
-
+
| ipv6 |
tcllib_ip
|
-
+
| irc |
irc · picoirc
|
-
+
| isA |
valtype::common · valtype::creditcard::amex · valtype::creditcard::discover · valtype::creditcard::mastercard · valtype::creditcard::visa · valtype::gs1::ean13 · valtype::iban · valtype::imei · valtype::isbn · valtype::luhn · valtype::luhn5 · valtype::usnpi · valtype::verhoeff
|
-
+
| ISBN |
valtype::isbn
|
-
+
| isthmus |
struct::graph::op
|
-
+
| iterator |
generator
@@ -2018,37 +2033,37 @@ Keyword Index
|
-
+
| javascript |
javascript · json · json::write
|
-
+
| jfif |
jpeg
|
-
+
| join |
struct::list
|
-
+
| jpeg |
jpeg
|
-
+
| JSON |
doctools::idx::export::json · doctools::idx::import::json · doctools::toc::export::json · doctools::toc::import::json · pt::peg::export::json · pt::peg::from::json · pt::peg::import::json · pt::peg::to::json
|
-
+
| json |
doctools::idx · doctools::idx::export · doctools::idx::import · doctools::toc · doctools::toc::export · doctools::toc::import · huddle · json · json::write
|
-
+
| justification |
textutil::adjust
@@ -2056,17 +2071,17 @@ Keyword Index
|
-
+
| keyword index |
docidx_intro · doctools2idx_introduction · doctools::idx · doctools::idx · doctools::idx::export · doctools::idx::import
|
-
+
| keywords |
docidx_plugin_apiref
|
-
+
| knuth |
soundex
@@ -2074,177 +2089,177 @@ Keyword Index
|
-
+
| l10n |
doctools::msgcat · doctools::msgcat::idx::c · doctools::msgcat::idx::de · doctools::msgcat::idx::en · doctools::msgcat::idx::fr · doctools::msgcat::toc::c · doctools::msgcat::toc::de · doctools::msgcat::toc::en · doctools::msgcat::toc::fr
|
-
+
| lambda |
lambda
|
-
+
| LaTeX |
docstrip · docstrip_util · tcldocstrip
|
-
+
| latex |
doctools::idx · doctools::idx · doctools::toc · doctools::toc
|
-
+
| latitute |
map::slippy
|
-
+
| ldap |
ldap · ldapx · uri
|
-
+
| ldap client |
ldap · ldapx
|
-
+
| ldif |
ldapx
|
-
+
| least squares |
math::linearalgebra
|
-
+
| left outer join |
struct::list
|
-
+
| lemon |
page_util_norm_lemon
|
-
+
| level graph |
struct::graph::op
|
-
+
| lexer |
doctools::idx::parse · doctools::toc::parse
|
-
+
| lexing |
string::token · string::token::shell
|
-
+
| limitsize |
tcl::transform::limitsize
|
-
+
| line |
math::geometry
|
-
+
| linear algebra |
math::linearalgebra
|
-
+
| linear equations |
math::linearalgebra
|
-
+
| linear program |
math::optimize
|
-
+
| lines |
term::ansi::ctrl::unix
|
-
+
| list |
struct::list · struct::queue · wip
|
-
+
| listener |
term::receive · term::receive::bind
|
-
+
| literate programming |
docstrip · docstrip_util · tcldocstrip
|
-
+
| LL(k) |
grammar::me_intro · grammar::peg · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| local searching |
struct::graph::op
|
-
+
| localization |
doctools::msgcat · doctools::msgcat::idx::c · doctools::msgcat::idx::de · doctools::msgcat::idx::en · doctools::msgcat::idx::fr · doctools::msgcat::toc::c · doctools::msgcat::toc::de · doctools::msgcat::toc::en · doctools::msgcat::toc::fr
|
-
+
| location |
map::geocode::nominatim · map::slippy · map::slippy::cache · map::slippy::fetcher
|
-
+
| log |
debug · debug::caller · debug::heartbeat · debug::timestamp · doctools::cvs · log · logger
|
-
+
| log level |
log · logger
|
-
+
| logger |
logger · logger::appender · logger::utils
|
-
+
| longest common subsequence |
struct::list
|
-
+
| longitude |
map::slippy
|
-
+
| loop |
struct::graph · struct::graph::op
|
-
+
| luhn |
valtype::luhn · valtype::luhn5
|
-
+
| luhn-5 |
valtype::luhn5
@@ -2252,247 +2267,247 @@ Keyword Index
|
-
+
| macros |
doctools::nroff::man_macros
|
-
+
| mail |
imap4 · mime · pop3 · smtp
|
-
+
| mailto |
uri
|
-
+
| man_macros |
doctools::nroff::man_macros
|
-
+
| manpage |
doctools · doctools::idx · doctools::idx · doctools::idx::export · doctools::idx::import · doctools::toc · doctools::toc::export · doctools::toc::import · doctools_plugin_apiref · dtplite · mpexpand · pkg_dtplite
|
-
+
| map |
generator · map::geocode::nominatim · map::slippy · map::slippy::cache · map::slippy::fetcher · mapproj · struct::list
|
-
+
| markdown |
doctools · doctools::idx · doctools::toc
|
-
+
| markup |
docidx_intro · docidx_lang_cmdref · docidx_lang_faq · docidx_lang_intro · docidx_lang_syntax · docidx_plugin_apiref · doctoc_intro · doctoc_lang_cmdref · doctoc_lang_faq · doctoc_lang_intro · doctoc_lang_syntax · doctoc_plugin_apiref · doctools · doctools2idx_introduction · doctools2toc_introduction · doctools::idx · doctools::idx · doctools::idx::export · doctools::idx::import · doctools::toc · doctools::toc · doctools::toc::export · doctools::toc::import · doctools_intro · doctools_lang_cmdref · doctools_lang_faq · doctools_lang_intro · doctools_lang_syntax · doctools_plugin_apiref · dtplite · mpexpand · pkg_dtplite · tcldocstrip
|
-
+
| MasterCard |
valtype::creditcard::mastercard
|
-
+
| matching |
grammar::me_intro · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op · struct::graph::op
|
-
+
| math |
math · math::bigfloat · math::bignum · math::calculus · math::complexnumbers · math::constants · math::decimal · math::fuzzy · math::geometry · math::interpolate · math::linearalgebra · math::optimize · math::PCA · math::polynomials · math::rationalfunctions · math::special · math::trig · simulation::annealing · simulation::montecarlo · simulation::random
|
-
+
| mathematics |
math::figurate · math::fourier · math::probopt · math::quasirandom · math::statistics
|
-
+
| matrices |
math::linearalgebra
|
-
+
| matrix |
- csv · math::linearalgebra · report · struct::matrix · struct::matrix_v1 · struct::queue · struct::stack
+ csv · math::linearalgebra · report · struct::matrix · struct::queue · struct::stack
|
-
+
| max cut |
struct::graph::op
|
-
+
| maximum |
math::optimize
|
-
+
| maximum flow |
struct::graph::op
|
-
+
| md4 |
md4 · ripemd128 · ripemd160
|
-
+
| md5 |
md5 · md5crypt
|
-
+
| md5crypt |
md5crypt
|
-
+
| medicare |
valtype::usnpi
|
-
+
| mega widget |
snit · snitfaq
|
-
+
| membership |
struct::set
|
-
+
| menu |
term::ansi::code::macros · term::interact::menu
|
-
+
| merge |
tcl::randomseed · uevent::onidle
|
-
+
| merge find |
struct::disjointset
|
-
+
| merging |
bench
|
-
+
| message |
comm · comm_wire · log
|
-
+
| message catalog |
doctools::msgcat · doctools::msgcat::idx::c · doctools::msgcat::idx::de · doctools::msgcat::idx::en · doctools::msgcat::idx::fr · doctools::msgcat::toc::c · doctools::msgcat::toc::de · doctools::msgcat::toc::en · doctools::msgcat::toc::fr
|
-
+
| message level |
log
|
-
+
| message package |
doctools::msgcat · doctools::msgcat::idx::c · doctools::msgcat::idx::de · doctools::msgcat::idx::en · doctools::msgcat::idx::fr · doctools::msgcat::toc::c · doctools::msgcat::toc::de · doctools::msgcat::toc::en · doctools::msgcat::toc::fr
|
-
+
| message-digest |
md4 · md5 · md5crypt · otp · ripemd128 · ripemd160 · sha1 · sha256
|
-
+
| metakit |
tie · tie
|
-
+
| method |
deleg_method · interp
|
-
+
| method reference |
oo::util · oo::util
|
-
+
| mime |
fileutil::magic::cfront · fileutil::magic::cgen · fileutil::magic::rt · mime · smtp
|
-
+
| minimal spanning tree |
struct::graph::op
|
-
+
| minimum |
math::optimize
|
-
+
| minimum cost flow |
struct::graph::op
|
-
+
| minimum degree spanning tree |
struct::graph::op
|
-
+
| minimum diameter spanning tree |
struct::graph::op
|
-
+
| mobile phone |
valtype::imei
|
-
+
| module |
docstrip_util
|
-
+
| montecarlo simulation |
simulation::montecarlo
|
-
+
| move |
fileutil::multi · fileutil::multi::op
|
-
+
| multi-file |
fileutil::multi · fileutil::multi::op
|
-
+
| multiplexer |
multiplexer
|
-
+
| multiprecision |
math::bigfloat · math::bignum
|
-
+
| my method |
oo::util · oo::util
@@ -2500,122 +2515,122 @@ Keyword Index
|
-
+
| name service |
nameserv · nameserv::auto · nameserv::common · nameserv::protocol · nameserv::server · nns · nns_intro · nnsd · nnslog · udpcluster
|
-
+
| namespace unknown |
namespacex
|
-
+
| namespace utilities |
namespacex
|
-
+
| narrative |
debug · debug::caller · debug::heartbeat · debug::timestamp
|
-
+
| National Provider Identifier |
valtype::usnpi
|
-
+
| neighbour |
struct::graph · struct::graph::op
|
-
+
| net |
ftp · ftp::geturl · imap4 · mime · smtp · websocket
|
-
+
| nettool |
nettool
|
-
+
| network |
pop3d · pop3d::dbox · pop3d::udb
|
-
+
| news |
nntp · uri
|
-
+
| next permutation |
struct::list
|
-
+
| nmea |
nmea
|
-
+
| nntp |
nntp
|
-
+
| nntpclient |
nntp
|
-
+
| no-op |
control
|
-
+
| node |
struct::graph · struct::graph::op · struct::tree
|
-
+
| nominatim |
map::geocode::nominatim
|
-
+
| normalization |
bench · page_util_norm_lemon · page_util_norm_peg · unicode
|
-
+
| NPI |
valtype::usnpi
|
-
+
| nroff |
doctools · doctools::idx · doctools::idx · doctools::idx::export · doctools::idx::export::nroff · doctools::nroff::man_macros · doctools::toc · doctools::toc · doctools::toc::export · doctools::toc::export::nroff · dtplite · mpexpand · pkg_dtplite
|
-
+
| NTLM |
SASL::NTLM
|
-
+
| NTP |
ntp_time
|
-
+
| null |
tcl::chan::null · tcl::chan::nullzero
|
-
+
| number theory |
math::numtheory
@@ -2623,67 +2638,67 @@ Keyword Index
|
-
+
| oauth |
oauth
|
-
+
| object |
snit · snitfaq · stooop · switched
|
-
+
| object oriented |
snit · snitfaq · stooop · switched
|
-
+
| observer |
hook · tcl::transform::observe
|
-
+
| odie |
cron · nettool · processman
|
-
+
| on-idle |
uevent::onidle
|
-
+
| one time pad |
tcl::transform::otp
|
-
+
| oo |
clay
|
-
+
| optimisation |
math::probopt
|
-
+
| optimization |
math::optimize · simulation::annealing
|
-
+
| ordered list |
struct::prioqueue
|
-
+
| otp |
tcl::transform::otp
|
-
+
| outer join |
struct::list
@@ -2691,292 +2706,292 @@ Keyword Index
|
-
+
| package |
csv
|
-
+
| package indexing |
docstrip_util
|
-
+
| page |
page_intro · page_pluginmgr · page_util_flow · page_util_norm_lemon · page_util_norm_peg · page_util_peg · page_util_quote
|
-
+
| pager |
term::interact::pager
|
-
+
| paragraph |
textutil · textutil::adjust
|
-
+
| PARAM |
pt::peg::to::param
|
-
+
| parameter entry form |
tepam · tepam::argument_dialogbox
|
-
+
| parser |
doctools::idx::parse · doctools::tcl::parse · doctools::toc::parse · grammar::aycock · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op · xsxp
|
-
+
| parser generator |
page · page_intro · page_pluginmgr · page_util_flow · page_util_norm_lemon · page_util_norm_peg · page_util_peg · page_util_quote
|
-
+
| parsing |
bench::in · bibtex · doctools2idx_introduction · doctools2toc_introduction · doctools::idx · doctools::idx::import · doctools::toc · doctools::toc::import · grammar::aycock · grammar::fa · grammar::fa::dacceptor · grammar::fa::dexec · grammar::fa::op · grammar::me::cpu · grammar::me::cpu::core · grammar::me::cpu::gasm · grammar::me::tcl · grammar::me_intro · grammar::me_vm · grammar::peg · grammar::peg::interp · htmlparse · huddle · string::token::shell · yaml
|
-
+
| parsing expression |
grammar::peg · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| parsing expression grammar |
grammar::me_intro · grammar::peg · grammar::peg::interp · page_util_peg · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| partial application |
lambda
|
-
+
| partition |
struct::disjointset
|
-
+
| partitioned set |
struct::disjointset
|
-
+
| passive |
transfer::connect
|
-
+
| password |
otp
|
-
+
| patch |
docstrip_util · textutil::patch
|
-
+
| patching |
rcs
|
-
+
| PCA |
math::PCA
|
-
+
| PEG |
grammar::me_intro · page_util_norm_peg · page_util_peg · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| performance |
bench · bench::in · bench::out::csv · bench::out::text · bench_intro · bench_lang_intro · bench_lang_spec · profiler
|
-
+
| permutation |
struct::list
|
-
+
| persistence |
tie · tie
|
-
+
| phone |
valtype::imei
|
-
+
| pi |
math::constants
|
-
+
| plain text |
doctools::idx::export::text · doctools::toc::export::text
|
-
+
| plane geometry |
math::geometry
|
-
+
| plugin |
docidx_plugin_apiref · doctoc_plugin_apiref · doctools2idx_introduction · doctools2toc_introduction · doctools::html::cssdefaults · doctools::idx · doctools::idx::export · doctools::idx::import · doctools::nroff::man_macros · doctools::toc · doctools::toc::export · doctools::toc::import · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::import::json · pt::peg::import::peg
|
-
+
| plugin management |
pluginmgr
|
-
+
| plugin search |
pluginmgr
|
-
+
| png |
png
|
-
+
| point |
math::geometry
|
-
+
| polynomial functions |
math::polynomials
|
-
+
| pool |
struct::pool · struct::queue
|
-
+
| pop |
pop3
|
-
+
| pop3 |
pop3 · pop3d · pop3d::dbox · pop3d::udb
|
-
+
| post-order |
struct::tree
|
-
+
| practcl |
practcl
|
-
+
| pre-order |
struct::tree
|
-
+
| prefix |
- textutil::string · textutil::trim
+ textutil::string · textutil::trim · textutil::wcswidth
|
-
+
| prime |
math::numtheory
|
-
+
| prioqueue |
struct::prioqueue · struct::queue
|
-
+
| priority queue |
struct::prioqueue
|
-
+
| probabilistic calculations |
math::probopt
|
-
+
| proc |
lambda
|
-
+
| procedure |
deleg_proc · tepam · tepam::procedure
|
-
+
| procedure documentation |
tepam::doc_gen
|
-
+
| processman |
processman
|
-
+
| producer |
hook
|
-
+
| profile |
profiler
|
-
+
| projection |
mapproj
|
-
+
| prospero |
uri
|
-
+
| protocol |
asn · ldap · ldapx · nameserv::protocol · pop3d · pop3d::dbox · pop3d::udb
|
-
+
| proxy |
autoproxy
|
-
+
| public key cipher |
pki
|
-
+
| publisher |
hook
|
-
+
| push down automaton |
grammar::me_intro · grammar::peg · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
@@ -2984,17 +2999,17 @@ Keyword Index
|
-
+
| quasi-random |
math::quasirandom
|
-
+
| queue |
csv · htmlparse · struct::stack · transfer::copy::queue
|
-
+
| quoting |
page_util_quote
@@ -3002,422 +3017,422 @@ Keyword Index
|
-
+
| radians |
math::constants · units
|
-
+
| radiobutton |
html
|
-
+
| radius |
struct::graph::op
|
-
+
| random |
tcl::chan::random · tcl::randomseed
|
-
+
| random numbers |
simulation::random
|
-
+
| rational functions |
math::rationalfunctions
|
-
+
| raw |
term::ansi::ctrl::unix
|
-
+
| rc4 |
rc4
|
-
+
| RCS |
rcs
|
-
+
| RCS patch |
rcs
|
-
+
| read |
coroutine · coroutine::auto
|
-
+
| reading |
bench::in
|
-
+
| receiver |
term::receive · term::receive::bind · transfer::receiver
|
-
+
| reconnect |
nameserv::auto
|
-
+
| record |
struct::queue · struct::record
|
-
+
| recursive descent |
grammar::me_intro · grammar::peg · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| reduce |
generator · struct::list
|
-
+
| reference |
doctools::idx · doctools::idx::export · doctools::idx::import · doctools::toc · doctools::toc::export · doctools::toc::import
|
-
+
| reflected channel |
tcl::chan::cat · tcl::chan::core · tcl::chan::events · tcl::chan::facade · tcl::chan::fifo · tcl::chan::fifo2 · tcl::chan::halfpipe · tcl::chan::memchan · tcl::chan::null · tcl::chan::nullzero · tcl::chan::random · tcl::chan::std · tcl::chan::string · tcl::chan::textwindow · tcl::chan::variable · tcl::chan::zero · tcl::randomseed · tcl::transform::adler32 · tcl::transform::base64 · tcl::transform::core · tcl::transform::counter · tcl::transform::crc32 · tcl::transform::hex · tcl::transform::identity · tcl::transform::limitsize · tcl::transform::observe · tcl::transform::otp · tcl::transform::rot · tcl::transform::spacer · tcl::transform::zlib
|
-
+
| regex |
string::token
|
-
+
| regular expression |
- grammar::fa · grammar::fa::dacceptor · grammar::fa::dexec · grammar::fa::op · textutil · textutil::split · textutil::trim
+ grammar::fa · grammar::fa::dacceptor · grammar::fa::dexec · grammar::fa::op · textutil · textutil::split · textutil::trim · textutil::wcswidth
|
-
+
| regular grammar |
grammar::fa · grammar::fa::dacceptor · grammar::fa::dexec · grammar::fa::op
|
-
+
| regular languages |
grammar::fa · grammar::fa::dacceptor · grammar::fa::dexec · grammar::fa::op
|
-
+
| remote communication |
comm · comm_wire
|
-
+
| remote execution |
comm · comm_wire
|
-
+
| remove |
fileutil::multi · fileutil::multi::op
|
-
+
| repeating |
struct::list
|
-
+
| repetition |
struct::list · textutil::repeat
|
-
+
| report |
report
|
-
+
| reshuffle |
struct::list
|
-
+
| residual graph |
struct::graph::op
|
-
+
| resolver |
dns
|
-
+
| resource management |
try
|
-
+
| restore |
nameserv::auto
|
-
+
| return |
throw
|
-
+
| reverse |
struct::list
|
-
+
| rfc 821 |
mime · smtp · smtpd
|
-
+
| rfc 822 |
mime · pop3d::dbox · smtp
|
-
+
| rfc 868 |
ntp_time
|
-
+
| rfc 959 |
ftp · ftp::geturl · ftpd
|
-
+
| rfc 977 |
nntp
|
-
+
| rfc 1034 |
dns
|
-
+
| rfc 1035 |
dns
|
-
+
| rfc 1036 |
nntp
|
-
+
| rfc 1320 |
md4 · md5 · ripemd128 · ripemd160
|
-
+
| rfc 1321 |
md4 · md5 · ripemd128 · ripemd160
|
-
+
| rfc 1413 |
ident
|
-
+
| rfc 1630 |
uri
|
-
+
| rfc 1886 |
dns
|
-
+
| rfc 1939 |
pop3 · pop3d
|
-
+
| rfc 2030 |
ntp_time
|
-
+
| rfc 2045 |
mime
|
-
+
| rfc 2046 |
mime
|
-
+
| rfc 2049 |
mime
|
-
+
| rfc 2104 |
md4 · md5 · ripemd128 · ripemd160 · sha1 · sha256
|
-
+
| rfc 2141 |
uri_urn
|
-
+
| rfc 2251 |
ldap · ldapx
|
-
+
| rfc 2255 |
uri
|
-
+
| rfc 2289 |
otp
|
-
+
| rfc 2396 |
uri
|
-
+
| rfc 2554 |
smtp
|
-
+
| RFC 2718 |
oauth
|
-
+
| rfc 2821 |
smtp · smtpd
|
-
+
| rfc 2849 |
ldapx
|
-
+
| rfc 3207 |
smtp
|
-
+
| rfc 3513 |
tcllib_ip
|
-
+
| rfc 3986 |
uri
|
-
+
| rfc 4511 |
ldap
|
-
+
| RFC 5849 |
oauth
|
-
+
| rfc 6455 |
websocket
|
-
+
| rfc 7858 |
dns
|
-
+
| rfc3501 |
imap4
|
-
+
| rfc3548 |
base32 · base32::hex
|
-
+
| right outer join |
struct::list
|
-
+
| RIPEMD |
ripemd128 · ripemd160
|
-
+
| roman numeral |
math::roman
|
-
+
| roots |
math::calculus
|
-
+
| rot |
tcl::transform::rot
|
-
+
| rot13 |
tcl::transform::rot
|
-
+
| rounding |
math::fuzzy
|
-
+
| rows |
term::ansi::ctrl::unix
|
-
+
| rpc |
comm · comm_wire
|
-
+
| rsa |
pki
|
-
+
| running |
grammar::fa::dexec
@@ -3425,367 +3440,367 @@ Keyword Index
|
-
+
| s3 |
S3
|
-
+
| SASL |
SASL · SASL::NTLM · SASL::SCRAM · SASL::XGoogleToken
|
-
+
| scanl |
generator
|
-
+
| SCCS |
rcs
|
-
+
| SCRAM |
SASL::SCRAM
|
-
+
| secure |
comm · pop3 · pop3d · transfer::connect · transfer::receiver · transfer::transmitter
|
-
+
| security |
aes · blowfish · cksum · crc16 · crc32 · des · md4 · md5 · md5crypt · otp · pki · rc4 · ripemd128 · ripemd160 · sha1 · sha256 · sum · tclDES · tclDESjr
|
-
+
| seed |
tcl::randomseed
|
-
+
| selectionbox |
javascript
|
-
+
| semantic markup |
docidx_intro · docidx_lang_cmdref · docidx_lang_faq · docidx_lang_intro · docidx_lang_syntax · docidx_plugin_apiref · doctoc_intro · doctoc_lang_cmdref · doctoc_lang_faq · doctoc_lang_intro · doctoc_lang_syntax · doctoc_plugin_apiref · doctools2idx_introduction · doctools2toc_introduction · doctools_intro · doctools_lang_cmdref · doctools_lang_faq · doctools_lang_intro · doctools_lang_syntax · doctools_plugin_apiref
|
-
+
| send |
comm
|
-
+
| serialization |
bee · doctools::idx::export::docidx · doctools::idx::export::html · doctools::idx::export::json · doctools::idx::export::nroff · doctools::idx::export::text · doctools::idx::export::wiki · doctools::idx::structure · doctools::toc::export::doctoc · doctools::toc::export::html · doctools::toc::export::json · doctools::toc::export::nroff · doctools::toc::export::text · doctools::toc::export::wiki · doctools::toc::structure · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::json · pt::peg::from::peg · pt::peg::import::json · pt::peg::import::peg · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · struct::graph · struct::tree
|
-
+
| server |
map::geocode::nominatim · map::slippy::fetcher · nameserv::common · nameserv::server · nns_intro · nnsd · udpcluster
|
-
+
| service |
logger
|
-
+
| services |
ftpd · httpd · smtpd
|
-
+
| set |
struct::queue · struct::set
|
-
+
| sha1 |
sha1
|
-
+
| sha256 |
sha256
|
-
+
| shell |
string::token::shell
|
-
+
| shortest path |
struct::graph::op
|
-
+
| shuffle |
struct::list
|
-
+
| simulated annealing |
simulation::annealing
|
-
+
| simulation |
simulation::random
|
-
+
| singleton |
oo::util · oo::util
|
-
+
| size limit |
tcl::transform::limitsize
|
-
+
| skiplist |
struct::queue · struct::skiplist
|
-
+
| slippy |
map::slippy · map::slippy::cache · map::slippy::fetcher
|
-
+
| smtp |
mime · smtp · smtpd
|
-
+
| smtpd |
smtpd
|
-
+
| Snit |
snit
|
-
+
| snit |
deleg_method · interp
|
-
+
| SNTP |
ntp_time
|
-
+
| socket |
comm · comm_wire · smtpd
|
-
+
| soundex |
soundex
|
-
+
| source |
docstrip · docstrip_util · tcldocstrip
|
-
+
| spacing |
tcl::transform::spacer
|
-
+
| spatial interpolation |
math::interpolate
|
-
+
| special functions |
math::special
|
-
+
| specification |
bench_lang_spec
|
-
+
| speed |
profiler
|
-
+
| split |
textutil::split
|
-
+
| squared graph |
struct::graph::op
|
-
+
| ssl |
comm · imap4 · pop3 · pop3d · transfer::connect · transfer::receiver · transfer::transmitter
|
-
+
| stack |
struct::queue
|
-
+
| standard io |
tcl::chan::std
|
-
+
| state |
grammar::fa · grammar::fa::dacceptor · grammar::fa::dexec · grammar::fa::op · grammar::peg · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| state (de)serialization |
namespacex
|
-
+
| statistical distribution |
simulation::random
|
-
+
| statistics |
counter · math · math::changepoint · math::PCA · math::statistics
|
-
+
| stdin |
tcl::chan::std
|
-
+
| stdout |
tcl::chan::std
|
-
+
| stochastic modelling |
simulation::montecarlo
|
-
+
| stream cipher |
rc4
|
-
+
| stream copy |
tcl::transform::observe
|
-
+
| string |
- string::token · string::token::shell · textutil · textutil::adjust · textutil::expander · textutil::repeat · textutil::split · textutil::string · textutil::tabify · textutil::trim
+ string::token · string::token::shell · textutil · textutil::adjust · textutil::expander · textutil::repeat · textutil::split · textutil::string · textutil::tabify · textutil::trim · textutil::wcswidth
|
-
+
| stringprep |
stringprep · stringprep::data · unicode::data
|
-
+
| strongly connected component |
struct::graph::op
|
-
+
| struct |
struct::pool · struct::record
|
-
+
| structure |
control
|
-
+
| structured queries |
treeql
|
-
+
| style |
doctools::html::cssdefaults
|
-
+
| subcommand |
tepam · tepam::procedure
|
-
+
| subgraph |
struct::graph · struct::graph::op
|
-
+
| subject |
hook
|
-
+
| submitbutton |
javascript
|
-
+
| subscriber |
hook
|
-
+
| subsequence |
struct::list
|
-
+
| subst |
doctools::tcl::parse
|
-
+
| sum |
sum
|
-
+
| swapping |
struct::list
|
-
+
| symmetric difference |
struct::set
|
-
+
| synchronous |
cache::async
|
-
+
| syntax tree |
grammar::me::util
@@ -3793,357 +3808,357 @@ Keyword Index
|
-
+
| table |
doctools::toc · doctools::toc::export · doctools::toc::import · html · report
|
-
+
| table of contents |
doctoc_intro · doctoc_plugin_apiref · doctools2toc_introduction · doctools::toc · doctools::toc · doctools::toc::export · doctools::toc::export::doctoc · doctools::toc::export::html · doctools::toc::export::json · doctools::toc::export::nroff · doctools::toc::export::text · doctools::toc::export::wiki · doctools::toc::import · doctools::toc::import::doctoc · doctools::toc::import::json
|
-
+
| tabstops |
textutil::tabify
|
-
+
| tallying |
counter
|
-
+
| tape archive |
tar
|
-
+
| tar |
tar
|
-
+
| tcl |
math::bigfloat · math::bignum · math::decimal · math::PCA
|
-
+
| Tcl module |
docstrip_util
|
-
+
| Tcl syntax |
doctools::tcl::parse
|
-
+
| tcler's wiki |
doctools::idx · doctools::idx::export · doctools::toc · doctools::toc::export
|
-
+
| tcllib |
csv
|
-
+
| TclOO |
clay · httpd · oo::util · oo::util · oometa · tool · tool::dict_ensemble
|
-
+
| TCLPARAM |
pt::peg::to::tclparam
|
-
+
| TDPL |
grammar::peg · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| temp file |
fileutil
|
-
+
| template processing |
textutil::expander
|
-
+
| terminal |
term · term::ansi::code · term::ansi::code::attr · term::ansi::code::ctrl · term::ansi::code::macros · term::ansi::ctrl::unix · term::ansi::send · term::interact::menu · term::interact::pager · term::receive · term::receive::bind · term::send
|
-
+
| test |
fileutil
|
-
+
| Testing |
valtype::common · valtype::creditcard::amex · valtype::creditcard::discover · valtype::creditcard::mastercard · valtype::creditcard::visa · valtype::gs1::ean13 · valtype::iban · valtype::imei · valtype::isbn · valtype::luhn · valtype::luhn5 · valtype::usnpi · valtype::verhoeff
|
-
+
| testing |
bench · bench::in · bench::out::csv · bench::out::text · bench_intro · bench_lang_intro · bench_lang_spec
|
-
+
| TeX |
textutil · textutil::adjust
|
-
+
| text |
bench::in · bench::out::text · doctools::idx · doctools::idx::export · doctools::toc · doctools::toc::export
|
-
+
| text comparison |
soundex
|
-
+
| text conversion |
rcs
|
-
+
| text differences |
rcs
|
-
+
| text display |
term::interact::menu · term::interact::pager
|
-
+
| text expansion |
textutil::expander
|
-
+
| text likeness |
soundex
|
-
+
| text processing |
bibtex · huddle · page · page_intro · page_pluginmgr · page_util_flow · page_util_norm_lemon · page_util_norm_peg · page_util_peg · page_util_quote · yaml
|
-
+
| text widget |
tcl::chan::textwindow
|
-
+
| threads |
coroutine · coroutine::auto
|
-
+
| throw |
throw
|
-
+
| thumbnail |
jpeg
|
-
+
| tie |
tie · tie
|
-
+
| tif |
tiff
|
-
+
| tiff |
tiff
|
-
+
| tile |
map::slippy::cache · map::slippy::fetcher
|
-
+
| time |
ntp_time
|
-
+
| timestamp |
png
|
-
+
| timestamps |
debug::timestamp
|
-
+
| tip 219 |
tcl::chan::cat · tcl::chan::core · tcl::chan::events · tcl::chan::facade · tcl::chan::fifo · tcl::chan::fifo2 · tcl::chan::halfpipe · tcl::chan::memchan · tcl::chan::null · tcl::chan::nullzero · tcl::chan::random · tcl::chan::std · tcl::chan::string · tcl::chan::textwindow · tcl::chan::variable · tcl::chan::zero · tcl::randomseed · tcl::transform::core
|
-
+
| tip 230 |
tcl::transform::adler32 · tcl::transform::base64 · tcl::transform::counter · tcl::transform::crc32 · tcl::transform::hex · tcl::transform::identity · tcl::transform::limitsize · tcl::transform::observe · tcl::transform::otp · tcl::transform::rot · tcl::transform::spacer · tcl::transform::zlib
|
-
+
| tip 234 |
tcl::transform::zlib
|
-
+
| tip 317 |
tcl::transform::base64
|
-
+
| Tk |
tcl::chan::textwindow
|
-
+
| tls |
comm · imap4 · pop3 · pop3d · smtp · transfer::connect · transfer::receiver · transfer::transmitter
|
-
+
| TMML |
doctools · doctools::idx · doctools::idx · doctools::toc · doctools::toc · dtplite · mpexpand · pkg_dtplite
|
-
+
| toc |
doctoc_intro · doctoc_plugin_apiref · doctools::toc · doctools::toc::export::doctoc · doctools::toc::export::html · doctools::toc::export::json · doctools::toc::export::nroff · doctools::toc::export::text · doctools::toc::export::wiki · doctools::toc::import::doctoc · doctools::toc::import::json
|
-
+
| toc formatter |
doctoc_plugin_apiref
|
-
+
| tokenization |
string::token · string::token::shell
|
-
+
| TOOL |
oometa · tool · tool::dict_ensemble
|
-
+
| top-down parsing languages |
grammar::me_intro · grammar::peg · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| torrent |
bee
|
-
+
| touch |
fileutil
|
-
+
| TPDL |
grammar::me_intro
|
-
+
| trace |
debug · debug::caller · debug::heartbeat · debug::timestamp
|
-
+
| transducer |
grammar::aycock · grammar::fa · grammar::fa::dacceptor · grammar::fa::dexec · grammar::fa::op · grammar::me_intro · grammar::peg · grammar::peg::interp · pt · pt::ast · pt::cparam::configuration::critcl · pt::cparam::configuration::tea · pt::json_language · pt::param · pt::pe · pt::pe::op · pt::peg · pt::peg::container · pt::peg::container::peg · pt::peg::export · pt::peg::export::container · pt::peg::export::json · pt::peg::export::peg · pt::peg::from::container · pt::peg::from::json · pt::peg::from::peg · pt::peg::import · pt::peg::import::container · pt::peg::import::json · pt::peg::import::peg · pt::peg::interp · pt::peg::to::container · pt::peg::to::cparam · pt::peg::to::json · pt::peg::to::param · pt::peg::to::peg · pt::peg::to::tclparam · pt::peg_language · pt::pegrammar · pt::pgen · pt::rde · pt::tclparam::configuration::nx · pt::tclparam::configuration::snit · pt::tclparam::configuration::tcloo · pt::util · pt_export_api · pt_import_api · pt_introduction · pt_parse_peg · pt_parser_api · pt_peg_op
|
-
+
| transfer |
transfer::connect · transfer::copy · transfer::copy::queue · transfer::data::destination · transfer::data::source · transfer::receiver · transfer::transmitter
|
-
+
| transformation |
page_util_peg · tcl::transform::adler32 · tcl::transform::base64 · tcl::transform::counter · tcl::transform::crc32 · tcl::transform::hex · tcl::transform::identity · tcl::transform::limitsize · tcl::transform::observe · tcl::transform::otp · tcl::transform::rot · tcl::transform::spacer · tcl::transform::zlib
|
-
+
| transmitter |
transfer::transmitter
|
-
+
| travelling salesman |
struct::graph::op
|
-
+
| traversal |
fileutil_traverse
|
-
+
| tree |
grammar::me::cpu::gasm · grammar::me::util · htmlparse · struct::queue · struct::stack · struct::tree · struct::tree_v1 · treeql
|
-
+
| tree query language |
treeql
|
-
+
| tree walking |
page_util_flow · page_util_norm_lemon · page_util_norm_peg
|
-
+
| TreeQL |
treeql
|
-
+
| trigonometry |
math::trig
|
-
+
| trimming |
textutil · textutil::trim
|
-
+
| twitter |
oauth
|
-
+
| type |
fileutil · fileutil::magic::cfront · fileutil::magic::cgen · fileutil::magic::filetype · fileutil::magic::rt · snit
|
-
+
| Type checking |
valtype::common · valtype::creditcard::amex · valtype::creditcard::discover · valtype::creditcard::mastercard · valtype::creditcard::visa · valtype::gs1::ean13 · valtype::iban · valtype::imei · valtype::isbn · valtype::luhn · valtype::luhn5 · valtype::usnpi · valtype::verhoeff
@@ -4151,92 +4166,92 @@ Keyword Index
|
-
+
| uevent |
hook
|
-
+
| unbind |
uevent
|
-
+
| uncapitalize |
textutil::string
|
-
+
| undenting |
textutil::adjust
|
-
+
| unicode |
stringprep · stringprep::data · unicode · unicode::data
|
-
+
| unified format diff |
textutil::patch
|
-
+
| union |
struct::disjointset · struct::set
|
-
+
| unit |
units
|
-
+
| unknown hooking |
namespacex
|
-
+
| untie |
tie · tie
|
-
+
| update |
coroutine · coroutine::auto
|
-
+
| uri |
uri · uri_urn
|
-
+
| url |
doctools::idx · doctools::idx::export · doctools::idx::import · doctools::toc::export · doctools::toc::import · map::geocode::nominatim · map::slippy::fetcher · uri · uri_urn
|
-
+
| urn |
uri_urn
|
-
+
| US-NPI |
valtype::usnpi
|
-
+
| utilities |
namespacex
|
-
+
| uuencode |
uuencode
|
-
+
| UUID |
uuid
@@ -4244,52 +4259,52 @@ Keyword Index
|
-
+
| Validation |
valtype::common · valtype::creditcard::amex · valtype::creditcard::discover · valtype::creditcard::mastercard · valtype::creditcard::visa · valtype::gs1::ean13 · valtype::iban · valtype::imei · valtype::isbn · valtype::luhn · valtype::luhn5 · valtype::usnpi · valtype::verhoeff
|
-
+
| Value checking |
valtype::common · valtype::creditcard::amex · valtype::creditcard::discover · valtype::creditcard::mastercard · valtype::creditcard::visa · valtype::gs1::ean13 · valtype::iban · valtype::imei · valtype::isbn · valtype::luhn · valtype::luhn5 · valtype::usnpi · valtype::verhoeff
|
-
+
| vectors |
math::linearalgebra
|
-
+
| verhoeff |
valtype::verhoeff
|
-
+
| vertex |
struct::graph · struct::graph::op
|
-
+
| vertex cover |
struct::graph::op
|
-
+
| virtual channel |
tcl::chan::cat · tcl::chan::core · tcl::chan::events · tcl::chan::facade · tcl::chan::fifo · tcl::chan::fifo2 · tcl::chan::halfpipe · tcl::chan::memchan · tcl::chan::null · tcl::chan::nullzero · tcl::chan::random · tcl::chan::std · tcl::chan::string · tcl::chan::textwindow · tcl::chan::variable · tcl::chan::zero · tcl::randomseed · tcl::transform::adler32 · tcl::transform::base64 · tcl::transform::core · tcl::transform::counter · tcl::transform::crc32 · tcl::transform::hex · tcl::transform::identity · tcl::transform::limitsize · tcl::transform::observe · tcl::transform::otp · tcl::transform::rot · tcl::transform::spacer · tcl::transform::zlib
|
-
+
| virtual machine |
grammar::me::cpu · grammar::me::cpu::core · grammar::me::cpu::gasm · grammar::me::tcl · grammar::me_intro · grammar::me_vm · grammar::peg::interp · pt::param
|
-
+
| VISA |
valtype::creditcard::visa
|
-
+
| vwait |
coroutine · coroutine::auto · smtpd
@@ -4297,37 +4312,37 @@ Keyword Index
|
-
+
| wais |
uri
|
-
+
| widget |
snit · snitfaq
|
-
+
| widget adaptors |
snit · snitfaq
|
-
+
| wiki |
doctools::idx · doctools::idx · doctools::idx::export · doctools::idx::export::wiki · doctools::toc · doctools::toc · doctools::toc::export · doctools::toc::export::wiki
|
-
+
| word |
doctools::tcl::parse · wip
|
-
+
| WWW |
httpd
|
-
+
| www |
uri
@@ -4335,42 +4350,42 @@ Keyword Index
|
-
+
| x.208 |
asn
|
-
+
| x.209 |
asn
|
-
+
| x.500 |
ldap
|
-
+
| XGoogleToken |
SASL::XGoogleToken
|
-
+
| xml |
xsxp
|
-
+
| xor |
tcl::transform::otp
|
-
+
| XPath |
treeql
|
-
+
| XSLT |
treeql
@@ -4378,22 +4393,22 @@ Keyword Index
|
-
+
| yaml |
huddle · yaml
|
-
+
| ydecode |
yencode
|
-
+
| yEnc |
yencode
|
-
+
| yencode |
yencode
@@ -4401,22 +4416,22 @@ Keyword Index
|
-
+
| zero |
tcl::chan::nullzero · tcl::chan::zero
|
-
+
| zip |
zipfile::decode · zipfile::encode · zipfile::mkzip
|
-
+
| zlib |
tcl::transform::zlib
|
-
+
| zoom |
map::slippy · map::slippy::cache · map::slippy::fetcher
diff --git a/idoc/www/tcllib/files/modules/comm/comm.html b/idoc/www/tcllib/files/modules/comm/comm.html
index d364fe02d6..353a3523cf 100644
--- a/idoc/www/tcllib/files/modules/comm/comm.html
+++ b/idoc/www/tcllib/files/modules/comm/comm.html
@@ -107,7 +107,7 @@
| Applications
]
|