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

A query operator that selects the element at a specified index among those selected so far.

Namespace/Module Path: Microsoft.FSharp.Linq

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

// Signature:
member this.Nth : QuerySource<'T,'Q> * int -> 'T

// Usage:
queryBuilder.Nth (source, index)

Parameters

  • source
    Type: QuerySource<'T,'Q>

    The input query.

  • index
    Type: int

    The index of the desired element.

Return Value

The selected element.

Remarks

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

Platforms

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

Version Information

F# Core Library Versions

Supported in: 4.0, Portable

See Also

Reference

Linq.QueryBuilder Class (F#)

Microsoft.FSharp.Linq Namespace (F#)

Query Expressions (F#)