F# equivalent of LINQ Single

后端 未结 2 2038
一生所求
一生所求 2020-12-21 08:44

Ok, so for most LINQ operations there is a F# equivalent. (Generally in the Seq module, since Seq= IEnumerable)

I can\'t find the equiv of IEmumerable.Single

2条回答
  •  半阙折子戏
    2020-12-21 09:17

    What about

    let Single source f =
        let worked = ref false
        let newf = fun a -> 
            match f a with
            |true -> 
                if !worked = true then failwith "not single"
                worked := true
                Some(a)
            |false -> None
        let r = source |> Seq.choose newf
        Seq.nth 0 r 
    

    Very unidiomatic but probably close to optimal

    EDIT:

    Solution with exactlyOne

    let only2 f s= (Seq.filter f s) |> exactlyOne
    

提交回复
热议问题