Skip to content

Instantly share code, notes, and snippets.

@Akii
Created August 4, 2015 18:00
Show Gist options
  • Save Akii/41c6d50f7188276d0d7f to your computer and use it in GitHub Desktop.
Save Akii/41c6d50f7188276d0d7f to your computer and use it in GitHub Desktop.
def dropWhile[A](l: List[A], f: A => Boolean): List[A] = {
if (f(l.head)) l
else dropWhile(tail(l), f)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment