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