| Perl-Critic-Bangs documentation | view source | Contained in the Perl-Critic-Bangs distribution. |
Perl::Critic::Policy::Bangs::ProhibitBitwiseOperators - Bitwise operators are usually accidentally used instead of logical boolean operators.
This Policy is part of the Perl::Critic::Bangs distribution.
Bitwise operators are usually accidentally used instead of logical
boolean operators. Instead of writing $a || $b, people will often
write $a | $b, which is not correct.
This policy cannot be configured.
Mike O'Regan <moregan@stresscafe.com>
Copyright (C) 2006-2011 Andy Lester and Mike O'Regan
This library is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0.
| Perl-Critic-Bangs documentation | view source | Contained in the Perl-Critic-Bangs distribution. |