📜  红宝石 |设置 >= 方法

📅  最后修改于: 2022-05-13 01:54:57.259000             🧑  作者: Mango

红宝石 |设置 >= 方法

>=是 Ruby 中的一个内置方法,如果一个集合是另一个集合的超集,则返回 true。如果它不是超集,则返回 false。

示例 1

#Ruby program to illustrate
#the >= method
  
#requires the set
require "set"
  
    s1
    = Set[1, 2] s2 = Set[1, 2, 3]
  
#superset ? method used
                     puts s2
                     >= s1

输出

true

示例 2

#Ruby program to illustrate
#the >= method
  
#requires the set
require "set"
  
    s1
    = Set[9, 7, 5] s2 = Set[12, 76]
  
#>= method used
                        puts s2
                        >= s1

输出

false

参考:https://devdocs.io/ruby~2.5/set#method-i-3E-3D