Skip to content

Instantly share code, notes, and snippets.

@WimJongeneel
Created October 31, 2020 11:08
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 WimJongeneel/33adf25ff848187faad6170f4b98ed7d to your computer and use it in GitHub Desktop.
Save WimJongeneel/33adf25ff848187faad6170f4b98ed7d to your computer and use it in GitHub Desktop.
export const take_while = <a>(c: Cont<a>, p: (a:a) => boolean) => {
let taking = true
return create_cont(cb => c.run(v => {
if(p(v) == false) taking = false
if(taking) cb(v)
}))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment