Skip to content

Instantly share code, notes, and snippets.

@robertpi
Created September 16, 2010 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertpi/582632 to your computer and use it in GitHub Desktop.
Save robertpi/582632 to your computer and use it in GitHub Desktop.
let (|>) x f = f x
myList.Select(x => x.MyIntMember).Where(x => 20);
myList
|> Seq.map (fun x -> x. MyIntMember)
|> Seq.map (fun x -> x > 20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment