Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Splits the collection into two collections, containing the elements for which the given predicate returns true and false respectively.
Namespace/Module Path: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
List.partition : ('T -> bool) -> 'T list -> 'T list * 'T list
// Usage:
List.partition predicate list
Parameters
predicate
Type: 'T ->boolThe function to test the input elements.
list
Type: 'TlistThe input list.
Return Value
A list containing the elements for which the predicate evaluated to false and a list containing the elements for which the predicate evaluated to true.
Remarks
This function is named Partition in compiled assemblies. If you are accessing the function from a language other than F#, or through reflection, use this name.
Example
The following code example shows how to use List.partition.
let list1 = [ 1 .. 10 ]
let listEven, listOdd = List.partition (fun elem -> elem % 2 = 0) list1
printfn "Evens: %A\nOdds: %A" listEven listOdd
Output
Evens: [2; 4; 6; 8; 10] Odds: [1; 3; 5; 7; 9]
Platforms
Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Version Information
F# Core Library Versions
Supported in: 2.0, 4.0, Portable