How to use the @effectful/es.yldStarM function in @effectful/es

To help you get started, we’ve selected a few @effectful/es examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github awto / effectfuljs / test / samples / options / generators-out-fts.js View on Github external
function f_5(b, a) {
  var c, d;
  console.log(a + b);
  d = eff(4);
  c = eff(d);
  return G.yldStarM(c, f_6);
}
github awto / effectfuljs / test / samples / options / generators-out-ft.js View on Github external
function f_5(b, a) {
  var c, d;
  console.log(a + b);
  d = eff(4);
  c = eff(d);
  return G.yldStarM(c, f_6);
}