Reputation: 34391
I want to extract a single item from a sequence in F#, or give an error if there is none or more than one. What is the best way to do this?
I currently have
let element = data |> (Seq.filter (function | RawXml.Property (x) -> false | _ -> true))
|> List.of_seq
|> (function head :: [] -> head | head :: tail -> failwith("Too many elements.") | [] -> failwith("Empty sequence"))
|> (fun x -> match x with MyElement (data) -> x | _ -> failwith("Bad element."))
It seems to work, but is it really the best way?
Edit: As I was pointed in the right direction, I came up with the following:
let element = data |> (Seq.filter (function | RawXml.Property (x) -> false | _ -> true))
|> (fun s -> if Seq.length s <> 1 then failwith("The sequence must have exactly one item") else s)
|> Seq.hd
|> (fun x -> match x with MyElement (_) -> x | _ -> failwith("Bad element."))
I guess it's a little nicer.
Upvotes: 7
Views: 3607
Reputation: 382
Updated answer would be to use Seq.exactlyOne which raises an ArgumentException
Upvotes: 3
Reputation: 1110
What's wrong with using the existing library function?
let single f xs = System.Linq.Enumerable.Single(xs, System.Func<_,_>(f))
[1;2;3] |> single ((=) 4)
Upvotes: 2
Reputation: 715
My two cents... this works with the option type so I can use it in my custom maybe monad. could be modified very easy though to work with exceptions instead
let Single (items : seq<'a>) =
let single (e : IEnumerator<'a>) =
if e.MoveNext () then
if e.MoveNext () then
raise(InvalidOperationException "more than one, expecting one")
else
Some e.Current
else
None
use e = items.GetEnumerator ()
e |> single
Upvotes: 0
Reputation: 48687
Use this:
> let only s =
if not(Seq.isEmpty s) && Seq.isEmpty(Seq.skip 1 s) then
Seq.hd s
else
raise(System.ArgumentException "only");;
val only : seq<'a> -> 'a
Upvotes: 1
Reputation: 47934
Sequence has a find function.
val find : ('a -> bool) -> seq<'a> -> 'a
but if you want to ensure that the seq has only one element, then doing a Seq.filter, then take the length after filter and ensure it equals one, and then take the head. All in Seq, no need to convert to a list.
Edit:
On a side note, I was going to suggest checking that the tail of a result is empty (O(1), instead of using the function length
(O(n)). Tail isn't a part of seq, but I think you can work out a good way to emulate that functionality.
Upvotes: 4
Reputation: 36438
done in the style of the existing sequence standard functions
#light
let findOneAndOnlyOne f (ie : seq<'a>) =
use e = ie.GetEnumerator()
let mutable res = None
while (e.MoveNext()) do
if f e.Current then
match res with
| None -> res <- Some e.Current
| _ -> invalid_arg "there is more than one match"
done;
match res with
| None -> invalid_arg "no match"
| _ -> res.Value
You could do a pure implementation but it will end up jumping through hoops to be correct and efficient (terminating quickly on the second match really calls for a flag saying 'I found it already')
Upvotes: 4