Skip to content

Instantly share code, notes, and snippets.

@KKostya
Last active July 27, 2018 08:44
Show Gist options
  • Save KKostya/69b33259de6a5f0de0d5a5ae72cd9470 to your computer and use it in GitHub Desktop.
Save KKostya/69b33259de6a5f0de0d5a5ae72cd9470 to your computer and use it in GitHub Desktop.
let rec foldi ~base ?(i=0) f l =
match l with
| [] -> base
| x :: tail -> f i x ( foldi f ~base ~i:(i+1) tail )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment