divide()是Ruby中的內置方法,它返回一組集合。它根據塊給出的條件進行劃分。如果它們不滿足給定條件,則將它們分為單個元素。
用法: s1.divide(condition)
參數:該函數采用將集合劃分為集合的條件。
返回值:它會通過複製集合,並刪除出現在給定可枚舉對象中的每個元素來返回建立的新集合。
例子1:
# Ruby program to illustrate the divide method
# requires the set
require "set"
s1 = Set[8, 5, 4]
# divide method used
puts s1.divide { |i,j| (i - j).abs == 3 }
輸出:
Set: {#Set: {8, 5}, #Set: {4}}
例子2:
# Ruby program to illustrate the divide method
# requires the set
require "set"
s1 = Set[16, 8, 3, 5, 2]
# divide method used
puts s1.divide { |i,j| (i - j)%2 == 0 }
輸出:
Set: {#Set: {16, 8, 2}, #Set: {3, 5}}
相關用法
- Ruby Set add?用法及代碼示例
- Ruby Hash each()用法及代碼示例
- Ruby Hash key()用法及代碼示例
- Ruby Hash key?()用法及代碼示例
- Ruby Random new()用法及代碼示例
- Ruby Time mon()用法及代碼示例
- Ruby Random hex()用法及代碼示例
- Ruby Time min用法及代碼示例
- Ruby Time day()用法及代碼示例
- Ruby Hash eql?用法及代碼示例
- Ruby Hash dig()用法及代碼示例
- Ruby Set empty?()用法及代碼示例
- Ruby Time now()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Set divide() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。