るりまサーチ

最速Rubyリファレンスマニュアル検索!
302件ヒット [301-302件を表示] (0.062秒)
トップページ > クエリ:Ruby[x] > クエリ:ruby[x] > 種類:インスタンスメソッド[x] > クエリ:@[x] > クエリ:self[x] > クラス:Object[x]

別のキーワード

  1. fiddle ruby_free
  2. rbconfig ruby
  3. fiddle build_ruby_platform
  4. rake ruby
  5. rubygems/defaults ruby_engine

ライブラリ

キーワード

検索結果

<< < ... 2 3 4 >>

Object#!~(other) -> bool (26.0)

自身が other とマッチしない事を判定します。

...自身が other とマッチしない事を判定します。

self
#=~(obj) を反転した結果と同じ結果を返します。

@
param other 判定するオブジェクトを指定します。

//emlist[例][ruby]{
obj = 'regexp'
p (obj !~ /re/) # => false

obj = nil
p (obj !~ /re/) # => true
/...
<< < ... 2 3 4 >>