Ruby 集合 < 方法
**< **是Ruby中的一个内置方法,如果一个集合是另一个集合的适当子集,则返回true。如果它不是一个适当的子集,那么它返回false。
语法 :s1.name < s2.name
参数 :该函数不需要任何参数。
返回值 : 如果集合 s1 是 s2 的适当子集,则返回 true,否则返回 false。
例子 1 :
#Ruby program to illustrate the < method
#requires the set
require "set"
s1
= Set[1, 2] s2 = Set[1, 2, 3]
# <method used
puts s1
< s2
输出:
true
例2 :
#Ruby program to illustrate the < method
#requires the set
require "set"
s1
= Set[1, 5] s2 = Set[1, 2, 3]
# <method used
puts s1
< s2
输出:
false
参考资料 : https://devdocs.io/ruby~2.5/set#method-i-3C