Skip to content

Instantly share code, notes, and snippets.

@priort
Last active July 12, 2019 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save priort/878cb9d5e5a8f82492e93b32bc5a0990 to your computer and use it in GitHub Desktop.
Save priort/878cb9d5e5a8f82492e93b32bc5a0990 to your computer and use it in GitHub Desktop.
tailrec fun <E> dropWhile(list: List<E>, f: (E) -> Boolean): List<E> =
when(list) {
Empty -> Empty
is Cons -> if (f(list.head)) dropWhile(list.tail, f) else list
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment