Array.minBy<'T,'U> 函式 (F#)
在函式結果上透過 Operators.min 比較陣列中的所有元素之後,傳回最小的元素。
**命名空間/模組路徑:**Microsoft.FSharp.Collections.Array
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
Array.minBy : ('T -> 'U) -> 'T [] -> 'T (requires comparison)
// Usage:
Array.minBy projection array
參數
projection
型別:'T -> 'U此函式用來將項目轉換成支援比較的型別。
array
型別:'T []輸入陣列。
例外狀況
例外狀況 |
條件 |
---|---|
當輸入陣列為空白時擲回。 |
傳回值
最小項目。
備註
這個函式在已編譯的組件中名為 MinBy。 如果您是透過 F# 以外的語言,或是透過反映來存取函式,請使用這個名稱。
範例
下列程式碼範例會示範 Array.minBy 的用法。
[| -10.0 .. 10.0 |]
|> Array.minBy (fun x -> x * x - 1.0)
|> printfn "%A"
Output
平台
Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2
版本資訊
F# 核心程式庫版本
支援版本:2.0, 4.0,可攜式執行檔 (PE)。