instance method NilClass#^

self ^ other -> bool[permalink][rdoc][edit]

other が真なら true を, 偽なら false を返します。

[PARAM] other:
排他的論理和を行なう式です


nil ^ true  # => true
nil ^ false # => false
nil ^ nil   # => false
nil ^ "a"   # => true