cvs commit: perlfaq perlfaq4.pod perlfaq5.pod

[email protected]
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
cvsuser     02/05/30 00:04:25

  Modified:    .        perlfaq4.pod perlfaq5.pod
  Log:
  * FAQ sync -- POD clean-ups
  
  Revision  Changes    Path
  1.25      +12 -9     perlfaq/perlfaq4.pod
  
  Index: perlfaq4.pod
  ===================================================================
  RCS file: /cvs/public/perlfaq/perlfaq4.pod,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -w -r1.24 -r1.25
  --- perlfaq4.pod	20 May 2002 16:50:08 -0000	1.24
  +++ perlfaq4.pod	30 May 2002 07:04:25 -0000	1.25
  @@ -1,6 +1,6 @@
   =head1 NAME
   
  -perlfaq4 - Data Manipulation ($Revision: 1.24 $, $Date: 2002/05/20 16:50:08 $)
  +perlfaq4 - Data Manipulation ($Revision: 1.25 $, $Date: 2002/05/30 07:04:25 $)
   
   =head1 DESCRIPTION
   
  @@ -135,7 +135,9 @@
   optimized for speed on some operations, and for at least some
   programmers the notation might be familiar.
   
  -=item B<How do I convert hexadecimal into decimal:>
  +=over 4
  +
  +=item How do I convert hexadecimal into decimal
   
   Using perl's built in conversion of 0x notation:
   
  @@ -158,7 +160,7 @@
       $vec = Bit::Vector->new_Hex(32, "DEADBEEF");
       $dec = $vec->to_Dec();
   
  -=item B<How do I convert from decimal to hexadecimal:>
  +=item How do I convert from decimal to hexadecimal
   
   Using sprint:
   
  @@ -181,7 +183,7 @@
       $vec->Resize(32); # suppress leading 0 if unwanted
       $hex = $vec->to_Hex();
   
  -=item B<How do I convert from octal to decimal:>
  +=item How do I convert from octal to decimal
   
   Using Perl's built in conversion of numbers with leading zeros:
   
  @@ -200,7 +202,7 @@
       $vec->Chunk_List_Store(3, split(//, reverse "33653337357"));
       $dec = $vec->to_Dec();
   
  -=item B<How do I convert from decimal to octal:>
  +=item How do I convert from decimal to octal
   
   Using sprintf:
   
  @@ -212,7 +214,7 @@
       $vec = Bit::Vector->new_Dec(32, -559038737);
       $oct = reverse join('', $vec->Chunk_List_Read(3));
   
  -=item B<How do I convert from binary to decimal:>
  +=item How do I convert from binary to decimal
   
   Perl 5.6 lets you write binary numbers directly with
   the 0b notation:
  @@ -236,7 +238,7 @@
       $vec = Bit::Vector->new_Bin(32, "11011110101011011011111011101111");
       $dec = $vec->to_Dec();
   
  -=item B<How do I convert from decimal to binary:>
  +=item How do I convert from decimal to binary
   
   Using unpack;
   
  @@ -251,6 +253,7 @@
   The remaining transformations (e.g. hex -> oct, bin -> hex, etc.)
   are left as an exercise to the inclined reader.
   
  +=back
   
   =head2 Why doesn't & work the way I want it to?
   
  
  
  
  1.18      +6 -6      perlfaq/perlfaq5.pod
  
  Index: perlfaq5.pod
  ===================================================================
  RCS file: /cvs/public/perlfaq/perlfaq5.pod,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -w -r1.17 -r1.18
  --- perlfaq5.pod	23 May 2002 19:33:50 -0000	1.17
  +++ perlfaq5.pod	30 May 2002 07:04:25 -0000	1.18
  @@ -1,6 +1,6 @@
   =head1 NAME
   
  -perlfaq5 - Files and Formats ($Revision: 1.17 $, $Date: 2002/05/23 19:33:50 $)
  +perlfaq5 - Files and Formats ($Revision: 1.18 $, $Date: 2002/05/30 07:04:25 $)
   
   =head1 DESCRIPTION
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.