in reply to Compare two signed integers without using comparision operator in perl

How to compare two signed integers without using the comparision operators in perl?

You can compare two integers for equality by exploiting the properties of "exclusive or" (^). See perlop.

  • Comment on Re: Compare two signed integers without using comparision operator in perl