如果set和给定set至少有一个共同的元素,则intersect?()是Ruby中的内置方法,返回true。
用法:s1_name.intersect?(s2_name)
参数:该函数接受强制性参数集,以对其进行检查。
返回值:如果集合和给定集合具有至少一个共同的元素,则返回true,否则返回false。
例子1:
# Ruby program to illustrate
# the intersect method
# requires the set
require "set"
s1 = Set[16, 8, 3, 5, 2]
s2 = Set[18, 17, 2]
# intersect method used
puts s1.intersect?(s2)
输出:
true
例子2:
# Ruby program to illustrate
# the intersect method
# requires the set
require "set"
s1 = Set[16, 8]
s2 = Set[18, 17, 56]
# intersect method used
puts s1.intersect?(s2)
输出:
false
相关用法
- Ruby Set add?用法及代码示例
- Ruby Regexp eql?()用法及代码示例
- Scala Regexp =~()用法及代码示例
- Ruby Numeric i()用法及代码示例
- Ruby Array one?()用法及代码示例
- Ruby Regexp new()用法及代码示例
- Scala Regexp ===()用法及代码示例
- Scala Regexp ==()用法及代码示例
- Ruby DateTime second()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Set intersect?() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。