Skip to content

Instantly share code, notes, and snippets.

@vgaltes
Created May 10, 2015 14:43
Show Gist options
  • Save vgaltes/e453ddd088beac84791f to your computer and use it in GitHub Desktop.
Save vgaltes/e453ddd088beac84791f to your computer and use it in GitHub Desktop.
FSharp Pattern Matching - parametrized active pattern
let (|DivisibleBy|_|) d n = if n % d = 0 then Some DivisibleBy else None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment