1tcl::transform::hex(n) Reflected/virtual channel supporttcl::transform::hex(n)
2
3
4
5______________________________________________________________________________
6
8 tcl::transform::hex - Hexadecimal encoding transformation
9
11 package require Tcl 8.6
12
13 package require tcl::transform::core ?1?
14
15 package require tcl::transform::hex ?1?
16
17 ::tcl::transform::hex chan
18
19______________________________________________________________________________
20
22 The tcl::transform::hex package provides a command creating a channel
23 transformation which hex encodes data written to it, and decodes the
24 data read from it.
25
26 A related transformations in this module is tcl::transform::base64.
27
28 The internal TclOO class implementing the transform handler is a sub-
29 class of the tcl::transform::core framework.
30
32 ::tcl::transform::hex chan
33 This command creates a hex transformation on top of the channel
34 chan and returns its handle.
35
37 This document, and the package it describes, will undoubtedly contain
38 bugs and other problems. Please report such in the category virtchan‐
39 nel of the Tcllib Trackers [http://core.tcl.tk/tcllib/reportlist].
40 Please also report any ideas for enhancements you may have for either
41 package and/or documentation.
42
43 When proposing code changes, please provide unified diffs, i.e the out‐
44 put of diff -u.
45
46 Note further that attachments are strongly preferred over inlined
47 patches. Attachments can be made by going to the Edit form of the
48 ticket immediately after its creation, and then using the left-most
49 button in the secondary navigation bar.
50
52 channel transformation, hexadecimal, reflected channel, tip 230, trans‐
53 formation, virtual channel
54
56 Channels
57
59 Copyright (c) 2009 Andreas Kupries <andreas_kupries@users.sourceforge.net>
60
61
62
63
64tcllib 1 tcl::transform::hex(n)