self ^ other -> bool
other が真なら true を, 偽なら false を返します。
例:
nil ^ true # => true nil ^ false # => false nil ^ nil # => false nil ^ "a" # => true