Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^2: Thoughts on replacing -> with .

by Corion (Patriarch)
on Jun 12, 2013 at 11:19 UTC ( [id://1038430]=note: print w/replies, xml ) Need Help??


in reply to Re: Thoughts on replacing -> with .
in thread Thoughts on replacing -> with .

Note that =~ and ~= are both valid Perl already.

Replies are listed 'Best First'.
Re^3: Thoughts on replacing -> with .
by Ralesk (Pilgrim) on Jun 12, 2013 at 11:27 UTC

    Hmm, I don’t see ~= in perlop; and ~ is the unary bitwise negation operator, so it wouldn’t make much sense to have ~=. What is it?

      It is like += and .=, which modify the left-hand side by the right hand side.

      $a += $b adds the right hand side ($b) to the left hand side, $a, and assigns the result to $a.

      $a .= $b appends $b to $a and assigns the result to $a.

      $a ~= $b xor's $b and $a and assigns the result to $a.

      As this is a relatively uncommon use, it maybe makes this interchange currently even harder to spot than later the use of =~ and ~=.

        But XOR-assign is supposed to be $a ^= $b...

        I am getting a syntax error for
        $a ~= $b
        لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (4)
As of 2024-04-24 04:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found