Skip to content

Instantly share code, notes, and snippets.

@juanplopes
Forked from tucaz/gist:757678
Created December 28, 2010 20:41
Show Gist options
  • Save juanplopes/757685 to your computer and use it in GitHub Desktop.
Save juanplopes/757685 to your computer and use it in GitHub Desktop.
//C#
public T FindInList<T>(IEnumerable<T> source, IEnumerable<T> target)
{
return source.First(target.Contains)
//return source.Intersect(target).First();
}
//F#
let findInList source target =
source |> List.pick (fun s -> target |> List.tryFind (fun (y,_) -> y = s))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment