Skip to content

Instantly share code, notes, and snippets.

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