超集?是Ruby中的内置方法,如果一个集合是另一个集合的超集,则返回true。如果不是超集,则返回false。
用法:s1.superset?(s2.name)
参数:该函数采用必填参数s2,该参数将检查s1的超集。
返回值:如果集合s2是s1的超集,则返回true,否则返回false。
例子1:
# Ruby program to illustrate
# the superset? method
# requires the set
require "set"
s1 = Set[1, 2]
s2 = Set[1, 2, 3]
# superset? method used
puts s2.superset?(s1)
输出:
true
例子2:
# Ruby program to illustrate
# the superset? method
# requires the set
require "set"
s1 = Set[9, 7, 5]
s2 = Set[12, 76]
# superset? method used
puts s2.superset?(s1)
输出:
false
相关用法
- Ruby Set add?用法及代码示例
- Ruby Queue enq()用法及代码示例
- Ruby Queue pop()用法及代码示例
- Ruby Struct eql?()用法及代码示例
- Ruby Set member?()用法及代码示例
- Ruby SizedQueue pop()用法及代码示例
- Ruby SizedQueue max=用法及代码示例
- Ruby SizedQueue max()用法及代码示例
- Ruby SizedQueue new()用法及代码示例
- Ruby SizedQueue enq()用法及代码示例
- Ruby SizedQueue deq()用法及代码示例
- Ruby Queue new()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Set superset? function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。