textutil.tcl
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 package require Tcl 8.2
00020
00021 namespace ::textutil {}
00022
00023
00024
00025
00026
00027 package require textutil::string
00028 package require textutil::repeat
00029 package require textutil::adjust
00030 package require textutil::split
00031 package require textutil::tabify
00032 package require textutil::trim
00033
00034 namespace ::textutil {
00035
00036
00037 namespace import -force string::chop string::tail
00038 namespace import -force string::cap string::uncap
00039 namespace import -force string::longestCommonPrefix
00040 namespace import -force string::longestCommonPrefixList
00041
00042
00043
00044 namespace import -force repeat::strRepeat repeat::blank
00045
00046
00047
00048 namespace import -force adjust::adjust adjust::indent adjust::undent
00049
00050
00051
00052 namespace import -force split::splitx split::splitn
00053
00054
00055
00056 namespace import -force trim::trim trim::trimleft trim::trimright
00057 namespace import -force trim::trimPrefix trim::trimEmptyHeading
00058
00059
00060
00061 namespace import -force tabify::tabify tabify::untabify
00062 namespace import -force tabify::tabify2 tabify::untabify2
00063
00064
00065
00066 namespace export chop tail cap uncap
00067 namespace export longestCommonPrefix longestCommonPrefixList
00068 namespace export strRepeat blank
00069 namespace export adjust indent undent
00070 namespace export splitx splitn
00071 namespace export trim trimleft trimright trimPrefix trimEmptyHeading
00072 namespace export tabify untabify tabify2 untabify2
00073 }
00074
00075
00076
00077
00078
00079 package provide textutil 0.7.1
00080