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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。