Connecting Tech Pros Worldwide Help | Site Map

Bitwise operations in perl

Newbie
 
Join Date: Oct 2008
Posts: 19
#1: Oct 31 '08
Hello Friends,
Is there any Bitwise operators in perl for bitwise AND , bitwise OR like that?

Thanks
Raghavendra
nithinpes's Avatar
Expert
 
Join Date: Dec 2007
Posts: 400
#2: Oct 31 '08

re: Bitwise operations in perl


Quote:

Originally Posted by raghavendrap

Hello Friends,
Is there any Bitwise operators in perl for bitwise AND , bitwise OR like that?

Thanks
Raghavendra

Yes.
| - bitwise OR
& - bitwise AND

If you want details and usage of all Bitwise operators in Perl, go through this link.
Reply


Similar Perl bytes