如果集合是给定集合的子集,则子集?()是Ruby中的内置方法,返回true。
用法:s1_name.subset?(s2_name)
参数:该函数带有一个强制参数,该参数是ch
返回值:返回自己。
例子1:
# Ruby program to illustrate
# the subset?() method
# requires the set
require "set"
s1 = Set[2, 12, 78, 10, 87, 98]
s2 = Set[2, 10, 87]
# reset method used
puts s2.subset?(s1)
输出:
true
例子2:
# Ruby program to illustrate
# the subset?() method
# requires the set
require "set"
s1 = Set[2, 12, 78, 10, 87, 98]
s2 = Set[1, 2, 3]
# reset method used
puts s2.subset?(s1)
输出:
false
相关用法
- Ruby Set add?用法及代码示例
- Ruby Time day()用法及代码示例
- Ruby Time now()用法及代码示例
- Ruby Time mon()用法及代码示例
- Ruby StringScanner pos用法及代码示例
- Ruby Enumerable first()用法及代码示例
- Ruby DateTime second()用法及代码示例
- Ruby Time eql?()用法及代码示例
- Ruby SizedQueue deq()用法及代码示例
- Ruby Time dst?()用法及代码示例
- Ruby DateTime sec()用法及代码示例
- Ruby StringScanner pos=用法及代码示例
- Ruby DateTime new()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Set subset? function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。