Expand Minimize
1 out of 1 rated this helpful - Rate this topic

QueryBuilder.MaxByNullable<'T,'Q,'Value> Method (F#)

Visual Studio 2012

A query operator that selects a nullable value for each element selected so far and returns the maximum of these values. If any nullable does not have a value, it is ignored.

Namespace/Module Path: Microsoft.FSharp.Linq

Assembly: FSharp.Core (in FSharp.Core.dll)

// Signature:
member this.MaxByNullable : QuerySource<'T,'Q> * ('T -> Nullable<'Value>) -> Nullable<'Value> when 'Value : (IComparable) and 'Value : (new : unit ->  'Value) and 'Value : struct and 'Value :> ValueType

// Usage:
queryBuilder.MaxByNullable (source, valueSelector)
source

Type: QuerySource<'T,'Q>

The input query.

valueSelector

Type: 'T -> Nullable<T><'Value>

A function that computes the values to compare.

The maximum value.

For more information and examples, see Query Expressions (F#).

Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2

F# Core Library Versions

Supported in: 4.0, Portable

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.