るりまサーチ (Ruby 2.6.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.012秒)

別のキーワード

  1. json nilclass
  2. nilclass rationalize
  3. _builtin nilclass
  4. nilclass ^
  5. nilclass |

ライブラリ

クラス

検索結果

NilClass#^(other) -> bool (117373.0)

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

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

@param other 排他的論理和を行なう式です

//emlist[例][ruby]{
nil ^ true # => true
nil ^ false # => false
nil ^ nil # => false
nil ^ "a" # => true
//}