Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > setライブラリ > Setクラス > include?
include?(o) -> bool
[permalink][rdoc]member?(o) -> bool
オブジェクト o がその集合に属する場合に true を返します。
require 'set' set = Set['hello', 'world'] p set.include?('world') #=> true p set.include?('bye') #=> false