in reply to What's the opposite of // (err) operator?
I think what you mean by "opposite", is that you want something that returns $this when $this // $that would normally return $that, and you want to do it in one line with only one mention of each of the 2 expressions:
defined ( $this ) ? $that : undef
defined ( $this ) && $that || undef
|
|---|