merge()是Ruby中的内置方法,它在将传递的对象合并到集合后返回新集合。
用法: s1_name.merge(object)
参数:该函数接受要合并的强制性参数可枚举对象。
返回值:合并后返回新集合。
例子1:
# Ruby program to illustrate
# the merge method
# requires the set
require "set"
s1 = Set[1, 2, 3]
s2 = Set[6]
# merge method used
puts s1.merge(s2)
输出:
Set: {1, 2, 3, 6}
例子2:
# Ruby program to illustrate
# the merge method
# requires the set
require "set"
s1 = Set[1, 2, 3]
# merge method used
puts s1.merge([9, 10, 12])
输出:
Set: {1, 2, 3, 9, 10, 12}
相关用法
- Ruby Hash merge!用法及代码示例
- Ruby Hash merge用法及代码示例
- Ruby Set add?用法及代码示例
- Ruby Math cos()用法及代码示例
- Ruby Time dst?()用法及代码示例
- Ruby Hash key?()用法及代码示例
- Ruby Set delete?用法及代码示例
- Ruby Array take()用法及代码示例
- Ruby Set flatten!()用法及代码示例
- Ruby Set compare_by_identity?用法及代码示例
- Ruby Set clear()用法及代码示例
- Ruby Time utc?用法及代码示例
- Ruby Set compare_by_identity()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Set merge() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。