How to use @effectful/es - 10 common examples

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-ft.js View on Github external
function e1_4(a) {
  var b, c;
  b = eff(3);
  console.log(a + b);
  c = eff(4);
  return G.yldMB(c, e1_5);
}
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);
}
github awto / effectfuljs / test / samples / options / generators-out-fts.js View on Github external
function ag2_4(loop) {
  var j;
  j = loop.value;
  return G.jMB(somethingElse, ag2_5, loop);
}
github awto / effectfuljs / test / samples / options / generators-out-fts.js View on Github external
function ag7_4(d, b, c) {
  var a;
  a = eff5();
  return G.jMB(a, ag7_5, b, c, d);
}
github awto / effectfuljs / test / samples / options / generators-out-ft.js View on Github external
function ag3_8(ag3_v, _ag3_v, loop) {
  var a;
  a = eff(_ag3_v.j);
  return G.jMB(a, ag3_9, ag3_v, _ag3_v, loop);
}
github awto / effectfuljs / test / samples / options / generators-out-ft.js View on Github external
function ag7_4(d, b, c) {
  var a;
  a = eff5();
  return G.jMB(a, ag7_5, b, c, d);
}