Skip to content

Instantly share code, notes, and snippets.

@CoditCompany
Created September 3, 2017 09:09
Show Gist options
  • Select an option

  • Save CoditCompany/d62ec25249ceec3bc963149d72b756ed to your computer and use it in GitHub Desktop.

Select an option

Save CoditCompany/d62ec25249ceec3bc963149d72b756ed to your computer and use it in GitHub Desktop.
// int -> Parser<'a, 'u> -> Parser<'a list, 'u>
let count n p =
match n with
| _ when n <= 0 -> preturn []
| _ -> sequence <| List.replicate n p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment