.\" Automatically generated by Pod::Man 2.23 (Pod::Simple 3.14) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is turned on, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .ie \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . nr % 0 . rr F .\} .el \{\ . de IX .. .\} .\" .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). .\" Fear. Run. Save yourself. No user-serviceable parts. . \" fudge factors for nroff and troff .if n \{\ . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] \fP .\} .if t \{\ . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff .if n \{\ . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} .if t \{\ . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' .ds 8 \h'\*(#H'\(*b\h'-\*(#H' .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] .ds ae a\h'-(\w'a'u*4/10)'e .ds Ae A\h'-(\w'A'u*4/10)'E . \" corrections for vroff .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' . \" for low resolution devices (crt and lpr) .if \n(.H>23 .if \n(.V>19 \ \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} .rm #[ #] #H #V #F C .\" ======================================================================== .\" .IX Title "Math::BaseCnv 3pm" .TH Math::BaseCnv 3pm "2011-05-12" "perl v5.12.3" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Math::BaseCnv \- fast functions to CoNVert between number Bases .SH "VERSION" .IX Header "VERSION" This documentation refers to version 1.8.B59BrZX of Math::BaseCnv, which was released on Mon May 9 11:53:35:33 2011. .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& use Math::BaseCnv; \& \& # CoNVert 63 from base\-10 (decimal) to base\- 2 (binary ) \& $binary_63 = cnv( 63, 10, 2 ); \& # CoNVert 111111 from base\- 2 (binary ) to base\-16 (hex ) \& $hex_63 = cnv( 111111, 2, 16 ); \& # CoNVert 3F from base\-16 (hex ) to base\-10 (decimal) \& $decimal_63 = cnv( \*(Aq3F\*(Aq, 16, 10 ); \& print "63 dec\->bin $binary_63 bin\->hex $hex_63 hex\->dec $decimal_63\en"; .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" BaseCnv provides a few simple functions for converting between arbitrary number bases. It is as fast as I currently know how to make it (of course relying only on the lovely Perl). If you would rather utilize an object syntax for number-base conversion, please see Ken Williams' fine Math::BaseCalc module. .SH "PURPOSE" .IX Header "PURPOSE" The reason I created BaseCnv was that I needed a simple way to convert quickly between the 3 number bases I use most (10, 16, && 64). It turned out that it was trivial to handle any arbitrary number base that is represented as characters. High-bit \s-1ASCII\s0 has proven somewhat problemmatic but at least BaseCnv can simply && realiably convert between any possible base between 2 && 64 (or 85). I'm happy with it && employ \fIb64()\fR in places I probably shouldn't now =). .SH "USAGE" .IX Header "USAGE" .SS "cnv($numb[,$from[,$tobs]])" .IX Subsection "cnv($numb[,$from[,$tobs]])" CoNVert the number contained in \f(CW$numb\fR from its current number base ($from) into the result number base ($tobs). .PP \&\fBWhen only \f(CB$numb\fB is provided as a parameter:\fR .PP If \f(CW$numb\fR only contains valid decimal (base 10) digits, it will be converted to hexadecimal (base 16). .PP If \f(CW$numb\fR only contains valid hexadecimal (base 16) digits or begins with '0x', it will be it will be converted to decimal (base 10). .PP \&\fBWhen only \f(CB$numb\fB && \f(CB$from\fB are provided as parameters:\fR .PP \&\fIcnv()\fR assumes that \f(CW$numb\fR is already in decimal format && uses \f(CW$from\fR as the \f(CW$tobs\fR. .PP \&\fBWhen all three parameters are provided:\fR .PP The normal (&& most clear) usage of \fIcnv()\fR is to provide all three parameters where \f(CW$numb\fR is converted from \f(CW$from\fR base to \f(CW$tobs\fR. .PP \&\fIcnv()\fR is the only function that is exported from a normal 'use Math::BaseCnv;' command. The other functions below can be imported to local namespaces explicitly or with the following tags: .PP .Vb 5 \& :all \- every function described here \& :hex \- only dec() && hex() \& :b64 \- only b10() && b64() && b64sort() && cnv() \& :dig \- only dig() && diginit() \& :sfc \- only summ(), fact(), && choo() .Ve .SS "b10($b64n)" .IX Subsection "b10($b64n)" A shortcut to convert the number given as a parameter ($b64n) from base 64 to decimal (base 10). .SS "b64($b10n)" .IX Subsection "b64($b10n)" A shortcut to convert the number given as a parameter ($b10n) from decimal (base 10) to base 64. .SS "b64sort(@b64s)" .IX Subsection "b64sort(@b64s)" A way to sort b64 strings as though they were decimal numbers. .SS "dec($b16n)" .IX Subsection "dec($b16n)" A shortcut to convert the number given as a parameter ($b16n) from hexadecimal (base 16) to decimal (base 10). .SS "hex($b10n)" .IX Subsection "hex($b10n)" A shortcut to convert the number given as a parameter ($b10n) from decimal (base 10) to hexadecimal (base 16). .PP Please read the \*(L"\s-1NOTES\s0\*(R" regarding \fIhex()\fR. .SS "dig(\e@newd)" .IX Subsection "dig(@newd)" Assign the new digit character list to be used in place of the default one. \fIdig()\fR can also alternately accept a string name matching one of the following predefined digit sets: .PP .Vb 10 \& \*(Aqbin\*(Aq => [\*(Aq0\*(Aq, \*(Aq1\*(Aq] \& \*(Aqoct\*(Aq => [\*(Aq0\*(Aq..\*(Aq7\*(Aq] \& \*(Aqdec\*(Aq => [\*(Aq0\*(Aq..\*(Aq9\*(Aq] \& \*(Aqhex\*(Aq => [\*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(Aqa\*(Aq..\*(Aqf\*(Aq] \& \*(AqHEX\*(Aq => [\*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(AqA\*(Aq..\*(AqF\*(Aq] \& \*(Aqb62\*(Aq => [\*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(AqA\*(Aq..\*(AqZ\*(Aq] \& \*(Aqb64\*(Aq => [\*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(AqA\*(Aq..\*(AqZ\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(Aq.\*(Aq, \*(Aq_\*(Aq] \& \*(Aqm64\*(Aq => [\*(AqA\*(Aq..\*(AqZ\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(Aq+\*(Aq, \*(Aq/\*(Aq] # MIME::Base64 \& \*(Aqiru\*(Aq => [\*(AqA\*(Aq..\*(AqZ\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(Aq[\*(Aq, \*(Aq]\*(Aq] # IRCu \& \*(Aqurl\*(Aq => [\*(AqA\*(Aq..\*(AqZ\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(Aq\-\*(Aq, \*(Aq_\*(Aq] # MIME::Base64::URLSafe \& \*(Aqrex\*(Aq => [\*(AqA\*(Aq..\*(AqZ\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(Aq!\*(Aq, \*(Aq\-\*(Aq] # RegEx \& \*(Aqid0\*(Aq => [\*(AqA\*(Aq..\*(AqZ\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(Aq_\*(Aq, \*(Aq\-\*(Aq] # ID 0 \& \*(Aqid1\*(Aq => [\*(AqA\*(Aq..\*(AqZ\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(Aq.\*(Aq, \*(Aq_\*(Aq] # ID 1 \& \*(Aqxnt\*(Aq => [\*(AqA\*(Aq..\*(AqZ\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(Aq.\*(Aq, \*(Aq\-\*(Aq] # XML Nmtoken \& \*(Aqxid\*(Aq => [\*(AqA\*(Aq..\*(AqZ\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(Aq_\*(Aq, \*(Aq:\*(Aq] # XML ID Name \& \*(Aqb85\*(Aq => [\*(Aq0\*(Aq..\*(Aq9\*(Aq, \*(AqA\*(Aq..\*(AqZ\*(Aq, \*(Aqa\*(Aq..\*(Aqz\*(Aq, \*(Aq!\*(Aq, \*(Aq#\*(Aq, # RFC 1924 for \& \*(Aq$\*(Aq, \*(Aq%\*(Aq, \*(Aq&\*(Aq, \*(Aq(\*(Aq, \*(Aq)\*(Aq, \*(Aq*\*(Aq, \*(Aq+\*(Aq, \*(Aq\-\*(Aq, # IPv6 addrs \& \*(Aq;\*(Aq, \*(Aq<\*(Aq, \*(Aq=\*(Aq, \*(Aq>\*(Aq, \*(Aq?\*(Aq, \*(Aq@\*(Aq, \*(Aq^\*(Aq, \*(Aq_\*(Aq, # like in \& \*(Aq\`\*(Aq, \*(Aq{\*(Aq, \*(Aq|\*(Aq, \*(Aq}\*(Aq, \*(Aq~\*(Aq ] # Math::Base85 .Ve .PP If no \e@newd list or digit set name is provided as a parameter, \fIdig()\fR returns the current character list. It's fine to have many more characters in your current digit set than will be used with your conversions (e.g., using dig('b64') works fine for any \fIcnv()\fR call with \f(CW$from\fR && \f(CW$tobs\fR params less than or equal to 64). .PP An example of a \e@newd parameter for a specified alternate digit set for base 9 conversions is: .PP .Vb 1 \& dig( [ qw( n a c h o z y u m ) ] ); .Ve .SS "\fIdiginit()\fP" .IX Subsection "diginit()" Resets the used digit list to the initial default order of the predefined digit set: 'b64'. This is simply a shortcut for calling dig('b64') for reinitialization purposes. .SS "summ($numb)" .IX Subsection "summ($numb)" A simple function to calculate a memoized BigInt summation of \f(CW$numb\fR down to 1. .SS "fact($numb)" .IX Subsection "fact($numb)" A simple function to calculate a memoized BigInt factorial of \f(CW$numb\fR. .ie n .SS "choo($ennn, $emmm)" .el .SS "choo($ennn, \f(CW$emmm\fP)" .IX Subsection "choo($ennn, $emmm)" A simple function to calculate a memoized BigInt function of \f(CW$ennn\fR choose \f(CW$emmm\fR. .SH "NOTES" .IX Header "NOTES" The Perl builtin \fIhex()\fR function takes a hex string as a parameter && returns the decimal value (FromBase = 16, ToBase = 10) but this notation seems counter-intuitive to me since a simple reading of the code suggests that a \fIhex()\fR function will turn your parameter into hexadecimal (i.e., It sounds like Perl's \fIhex()\fR will hexify your parameter but it does not.) so I've decided (maybe foolishly) to invert the notation for my similar functions since it makes more sense to me this way && will be easier to remember (I've had to lookup \fIhex()\fR in the Camel book many times already which was part of the impetus for this module... as well as the gut reaction that \fIsprintf()\fR is not a proper natural inverse function for \fIhex()\fR). .PP This means that my \fIb64()\fR function takes a decimal number as a parameter && returns the base64 equivalent (FromBase = 10, ToBase = 64) && my \fIb10()\fR function takes a base64 number (string) && returns the decimal value (FromBase = 64, ToBase = 10). My \fIhex()\fR function overloads Perl's builtin version with this opposite behavior so my \fIdec()\fR function behaves like Perl's normal \fIhex()\fR function. I know it's confusing && maybe bad form of me to do this but I like it so much better this way that I'd rather go against the grain. .PP Please think of my \fIdec()\fR && \fIhex()\fR functions as meaning decify && hexify. Also the pronunciation of \fIdec()\fR is 'dess' (!'deck' which would be the inverse of 'ink' which \*(-- && ++ already do so well). After reading the informative Perl module etiquette guidelines, I now appreciate the need to export as little as is necessary by default. So to be responsible, I have limited BaseCnv exporting to only \fIcnv()\fR under normal circumstances. Please specify the other functions you'd like to import into your namespace or use the tags described above in the \fIcnv()\fR section like: .PP .Vb 1 \& \*(Aquse Math::BaseCnv qw(:all !:hex);\*(Aq .Ve .PP Error checking is minimal. .PP This module does not handle fractional number inputs because I like using the dot (.) character as a standard base64 digit since it makes for clean filenames. .PP \&\fIsumm()\fR, \fIfact()\fR, && \fIchoo()\fR are general Math function utilities which are unrelated to number-base conversion but I didn't feel like making another separate module just for them so they snuck in here. .PP I hope you find Math::BaseCnv useful. Please feel free to e\-mail me any suggestions or coding tips or notes of appreciation (\*(L"app-ree-see-ay-shun\*(R"). Thank you. \s-1TTFN\s0. .SH "2DU" .IX Header "2DU" .IP "\- better error checking" 2 .IX Item "- better error checking" .PD 0 .IP "\- handle fractional parts? umm but I like using '.' as a b64 char so ',' comma or some other separator?" 2 .IX Item "- handle fractional parts? umm but I like using '.' as a b64 char so ',' comma or some other separator?" .IP "\- What else does BaseCnv need?" 2 .IX Item "- What else does BaseCnv need?" .PD .SH "CHANGES" .IX Header "CHANGES" Revision history for Perl extension Math::BaseCnv: .IP "\- 1.8.B59BrZX Mon May 9 11:53:35:33 2011" 2 .IX Item "- 1.8.B59BrZX Mon May 9 11:53:35:33 2011" * updated 'url' digit set to URLSafe to resolve \s-1HTTPS://RT\s0.CPAN.Org/Ticket/Display.html?id=60125 .Sp * updated license copyright years (already had GPLv3) .IP "\- 1.6.A6FGHKE Tue Jun 15 16:17:20:14 2010" 2 .IX Item "- 1.6.A6FGHKE Tue Jun 15 16:17:20:14 2010" * bumped minor version number so they'll keep ascending (without \s-1PT\s0 comprehension) .IP "\- 1.4.A6FAbEb Tue Jun 15 10:37:14:37 2010" 2 .IX Item "- 1.4.A6FAbEb Tue Jun 15 10:37:14:37 2010" * added Math::BigInt code for >64\-bit number-base conversions .Sp * added a bunch more DigitSets: IRCu, \s-1URL\s0, RegEx, identifier variants, \s-1XML\s0 Nmtoken, && \s-1XML\s0 \s-1ID\s0 Name .IP "\- 1.4.75O6Pbr Thu May 24 06:25:37:53 2007" 2 .IX Item "- 1.4.75O6Pbr Thu May 24 06:25:37:53 2007" * added Test::Pod(::Coverage)? tests && \s-1PREREQ\s0 entries .Sp * added b85 for IPv6, gen'd \s-1META\s0.yml (w/ newline before \s-1EOF\s0), up'd minor ver .IP "\- 1.2.68J9uJQ Sat Aug 19 09:56:19:26 2006" 2 .IX Item "- 1.2.68J9uJQ Sat Aug 19 09:56:19:26 2006" * added \fIb64sort()\fR && put pod at bottom .IP "\- 1.2.59M7mRX Thu Sep 22 07:48:27:33 2005" 2 .IX Item "- 1.2.59M7mRX Thu Sep 22 07:48:27:33 2005" * testing Make as primary and BuildPL backup (needing rename for dot) .IP "\- 1.2.59IBlgw Sun Sep 18 11:47:42:58 2005" 2 .IX Item "- 1.2.59IBlgw Sun Sep 18 11:47:42:58 2005" * testing just using Module::Build instead of MakeMaker .Sp * fixed test 12 which was failing on \s-1AMD64\s0 .Sp * added Build.PL to pkg .IP "\- 1.2.54HK3pB Sun Apr 17 20:03:51:11 2005" 2 .IX Item "- 1.2.54HK3pB Sun Apr 17 20:03:51:11 2005" * removed 128 digit-set since some hi-bit chars cause probs on Win32 .Sp * made bin/cnv only executable to go in \s-1EXE_FILES\s0 .Sp * made Math::BaseCalc a link in pod && updated License .IP "\- 1.2.45UC8fo Sun May 30 12:08:41:50 2004" 2 .IX Item "- 1.2.45UC8fo Sun May 30 12:08:41:50 2004" * tidied \s-1POD\s0 && upped minor version number since \s-1CPAN\s0 can't read \s-1PTVR\s0 .IP "\- 1.0.44E9ljP Wed Apr 14 09:47:45:25 2004" 2 .IX Item "- 1.0.44E9ljP Wed Apr 14 09:47:45:25 2004" * added test for div-by-zero error in \fIchoo()\fR .Sp * added \fIsumm()\fR .IP "\- 1.0.446EIbS Tue Apr 6 14:18:37:28 2004" 2 .IX Item "- 1.0.446EIbS Tue Apr 6 14:18:37:28 2004" * snuck in \fIfact()\fR && \fIchoo()\fR .IP "\- 1.0.42REDir Fri Feb 27 14:13:44:53 2004" 2 .IX Item "- 1.0.42REDir Fri Feb 27 14:13:44:53 2004" * changed test.pl to hopefully pass MSWin32\-x86\-multi\-thread .IP "\- 1.0.428LV46 Sun Feb 8 21:31:04:06 2004" 2 .IX Item "- 1.0.428LV46 Sun Feb 8 21:31:04:06 2004" * broke apart \s-1CHANGES\s0 to descend chronologically .Sp * made \fIdec()\fR auto uppercase param since dec(a) was returning 36 instead of 10 .IP "\- 1.0.41M4GMP Thu Jan 22 04:16:22:25 2004" 2 .IX Item "- 1.0.41M4GMP Thu Jan 22 04:16:22:25 2004" * put cnv in bin/ as \s-1EXE_FILES\s0 .IP "\- 1.0.418BEPc Thu Jan 8 11:14:25:38 2004" 2 .IX Item "- 1.0.418BEPc Thu Jan 8 11:14:25:38 2004" * testing new e auto-gen \s-1MANIFEST\s0(.SKIP)? .IP "\- 1.0.3CNH37s Tue Dec 23 17:03:07:54 2003" 2 .IX Item "- 1.0.3CNH37s Tue Dec 23 17:03:07:54 2003" * updated \s-1POD\s0 .IP "\- 1.0.3CG3dIx Tue Dec 16 03:39:18:59 2003" 2 .IX Item "- 1.0.3CG3dIx Tue Dec 16 03:39:18:59 2003" * normalized base spelling .IP "\- 1.0.3CD1Vdd Sat Dec 13 01:31:39:39 2003" 2 .IX Item "- 1.0.3CD1Vdd Sat Dec 13 01:31:39:39 2003" * added \s-1ABSTRACT\s0 section to \fIWriteMakeFile()\fR .Sp * changed synopsis example .Sp * updated all \s-1POD\s0 indenting .IP "\- 1.0.3CCA5Mi Fri Dec 12 10:05:22:44 2003" 2 .IX Item "- 1.0.3CCA5Mi Fri Dec 12 10:05:22:44 2003" * removed indenting from \s-1POD\s0 \s-1NAME\s0 field .IP "\- 1.0.3CB7M43 Thu Dec 11 07:22:04:03 2003" 2 .IX Item "- 1.0.3CB7M43 Thu Dec 11 07:22:04:03 2003" * updated package to coincide with Time::Fields release .IP "\- 1.0.39B36Lv Thu Sep 11 03:06:21:57 2003" 2 .IX Item "- 1.0.39B36Lv Thu Sep 11 03:06:21:57 2003" * synchronized \s-1POD\s0 with \s-1README\s0 documentation using new e utility .Sp * templatized package compilation .Sp * fixed boundary bugs .IP "\- 1.0.37SLNGN Mon Jul 28 21:23:16:23 2003" 2 .IX Item "- 1.0.37SLNGN Mon Jul 28 21:23:16:23 2003" * first version (&& my first Perl module... yay!) put on \s-1CPAN\s0 .IP "\- 1.0.37JKj3w Sat Jul 19 20:45:03:58 2003" 2 .IX Item "- 1.0.37JKj3w Sat Jul 19 20:45:03:58 2003" * reworked interface from shell utility to package .IP "\- 1.0.3159mLT Sun Jan 5 09:48:21:29 2003" 2 .IX Item "- 1.0.3159mLT Sun Jan 5 09:48:21:29 2003" * original version .SH "INSTALL" .IX Header "INSTALL" Please run: .PP .Vb 1 \& \`perl \-MCPAN \-e "install Math::BaseCnv"\` .Ve .PP or uncompress the package && run: .PP .Vb 3 \& \`perl Makefile.PL; make; make test; make install\` \& or if you don\*(Aqt have \`make\` but Module::Build is installed \& \`perl Build.PL; perl Build; perl Build test; perl Build install\` .Ve .SH "LICENSE" .IX Header "LICENSE" Most source code should be Free! Code I have lawful authority over is && shall be! Copyright:(c) 2003\-2011, Pip Stuart. Copyleft : This software is licensed under the \s-1GNU\s0 General Public License (version 3). Please consult the Free Software Foundation (\s-1HTTP://FSF\s0.Org) for important information about your freedom. .SH "AUTHOR" .IX Header "AUTHOR" Pip Stuart