📜  红宝石 |设置<方法

📅  最后修改于: 2022-05-13 01:55:45.462000             🧑  作者: 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]
  
# 

输出

true

示例 2

#Ruby program to illustrate the < method
  
#requires the set
require "set"
  
    s1
    = Set[1, 5] s2 = Set[1, 2, 3]
  
# 

输出

false

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