enumerable的partition()是Ruby中的內置方法,它返回兩個數組,一個數組包含返回true的enumerable元素,而另一個包含返回false的元素。如果未傳遞任何塊,它將返回一個枚舉數。
用法 enu.partition { |obj| block }
參數:該函數根據要進行的分區占用一個塊。
返回值:返回兩個數組。
例子1:
# Ruby program for partition method in Enumerable
# Initialize an enumerable
enu1 = [10, 19, 18]
# Prints
enu1.partition { |num| num>12}
輸出:
[[19, 18], [10]]
範例#2:
# Ruby program for partition method in Enumerable
# Initialize an enumerable
enu1 = (1..100)
# Prints
enu1.partition
輸出:
Enumerator: 1..100:partition
相關用法
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable detect()用法及代碼示例
- Ruby Enumerable select()用法及代碼示例
- Ruby Enumerable take_while()用法及代碼示例
- Ruby Enumerable to_a()用法及代碼示例
- Ruby Enumerable cycle()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable partition() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。