可枚舉的minmax_by()是Ruby中的內置方法,它返回包含兩個元素的數組。根據塊中的條件,它包含可枚舉的最小值和最大值。
用法: enu.minmax_by { |obj| block }
參數:該函數帶有一個可選塊。
返回值:返回包含最小值和最大值的數組。
例子1:
# Ruby program for minmax_by method in Enumerable
# Initialize
enu1 = (2..6)
# Prints
enu1.minmax_by
輸出:
[2, 6]
範例#2:
# Ruby program for minmax_by method in Enumerable
# Initialize
enu1 = (1..100)
# Prints
enu1.minmax_by {|a, b| a<=>b}
輸出:
[1, 100]
相關用法
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable each_slice()用法及代碼示例
- Ruby Enumerable include?()用法及代碼示例
- Ruby Enumerable uniq()用法及代碼示例
- Ruby Enumerable drop()用法及代碼示例
- Ruby Enumerable sort()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable minmax_by() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。