Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Re(golf): I'm looking for the faster way to convert char 2 Bin and Bin 2 char (8bits)

by I0 (Priest)
on Jan 27, 2001 at 05:08 UTC ( [id://54690]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      my $i = 1;
       (push @num, (($num & $i) ? 1 : 0)) and $i<<=1 until $i > $num;
    
  2. or download this
    (push @num, (($num & 1) ? 1 : 0)) and $num>>=1 until 1 > $num;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://54690]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (4)
As of 2024-03-29 06:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found