Guest User

Untitled

a guest
Nov 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. match a.TryGetValue(key) with
  2. | (true, v) -> v
  3. | _ ->
  4. match b.TryGetValue(key) with
  5. | (true, v) -> v
  6. | _ ->
  7. match c.TryGetValue(key) with
  8. | (true, v) -> v
  9. | _ -> defaultValue
Add Comment
Please, Sign In to add comment