I am facing a strange problem here in the working of Smart Matching Operator..
I have read that the order of operand while using the Smart Matching Operator(~~) doesn't matter, and it gives the same result.. But in an example which I have shown below, this doesn't work..
I want to check whether an element is amongst one of the elements of a given array or not..
Below are the two ways I tried : -
First way: - ($result ~~ @nums)
#!/perl/bin
use v5.14;
my @nums = qw( 1 2 3 27 42 );
my $result = 27;
say "The result [$result] is one of the input values (@nums)" if $result ~~ @nums;
Second way: - (@nums ~~ $result)
#!/perl/bin
use v5.14;
my @nums = qw( 1 2 3 27 42 );
my $result = 27;
say "The result [$result] is one of the input values (@nums)" \
if @nums ~~ $result;
However, the first way is working fine, and it is printing the statement, but in the second way, it is not printing..
i.e. : - @nums ~~ $result is not giving the same result as $result ~~ @nums
I can't understand why this is happening..
Can anyone help me. I am unable to find this problem on SO.