Ruby 集合 flatten()函数
flatten() 是Ruby中的一个内置方法,它返回一个新的集合,该集合是该集合的副本,对每个包含的集合进行递归扁平化。
语法 :s1.flatten()
参数 :该函数不需要任何参数。
返回值 : 它返回一个布尔值。如果该集合是空的,则返回 true,否则返回 false。
例子 1 :
# Ruby program to illustrate the flatten method
# requires the set
require "set"
s1 = Set[1, 2, 4, 4]
# flatten method used
s2 = s1.flatten()
# Prints s2
puts s2
输出:
Set: {1, 2, 4}
例2 :
# Ruby program to illustrate the flatten method
# requires the set
require "set"
s1 = Set[16, 8, 3, 5, 2]
# flatten method used
s2 = s1.flatten()
# Prints s2
puts s2
输出:
Set: {16, 8, 3, 5, 2}