Advertisement
Guest User

Untitled

a guest
May 29th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public static FSharpOption<T> Option`1.select.Static(FSharpFunc<T, bool> f, T x)
  2. {
  3. if (f.Invoke(x))
  4. {
  5. }
  6. return FSharpOption<T>.Some(x);
  7. return null;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement