📜  红宝石 |设置脱节?函数

📅  最后修改于: 2022-05-13 01:55:30.555000             🧑  作者: Mango

红宝石 |设置脱节?函数

脱节?是 Ruby 中的一个内置方法,如果集合和给定集合没有共同元素,则返回 true。

示例 1

# Ruby program to illustrate the disjoint? method 
   
# requires the set 
require "set"
   
s1 = Set[1, 2, 4]
s2 = Set[1, 2, 3] 
   
# difference method used
s3 = s1.disjoint?(s2)
   
# Prints the s3 
puts s3

输出

false

示例 2

# Ruby program to illustrate the disjoint? method 
   
# requires the set 
require "set"
   
s1 = Set[8, 5, 4]
s2 = Set[1, 2, 3] 
   
# difference method used
s3 = s1.disjoint?(s2)
   
# Prints the s3 
puts s3

输出

true