最速Rubyリファレンスマニュアル検索!
すべて(3)
3.2(1)
3.3(1)
3.4(1)
3件ヒット
[1-3件を表示]
(0.091秒)
トップページ
>
:
t
>
:
param
>
:
インスタンスメソッド
>
:
ruby
>
:
include?
>
クラス:
Set
>
:ビルトイン
別のキーワード
net/imap param
win32ole win32ole_param
win32ole_param input?
win32ole_param optional?
bodytypebasic param
検索結果
先頭1件
Set
#
include?(o) -> bool
Set
#
include?(o) -> bool
(18116.0)
3.2
3.3
3.4
インスタンスメソッド
オブジェクト o がその集合に属する場合に true を返します。
...
オブジェクト o がその集合に属する場合に
t
rue を返します。
@
param
o オブジェクトを指定します。
//emlis
t
[][
ruby
]{
set
=
Set
['hello', 'world']
p
set
.
include?
('world') # =>
t
rue
p
set
.
include?
('bye') # => false
//}
...