How to use the @effectful/es.iteratorM 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-ft.js View on Github external
function ag1_1(ag1_v, _ag1_v) {
  var loop;
  loop = G.iteratorM(something);
  return ag1_2(ag1_v, _ag1_v, loop);
}
github awto / effectfuljs / test / samples / options / generators-out-fts.js View on Github external
function ag3_4(i) {
  var loop;
  loop = G.iteratorM(something());
  return ag3_5(i, loop);
}
github awto / effectfuljs / test / samples / options / generators-out-ft.js View on Github external
function ag2_1(ag2_v, _ag2_v) {
  var loop;
  loop = G.iteratorM(something);
  return ag2_2(ag2_v, _ag2_v, loop);
}
github awto / effectfuljs / test / samples / options / generators-out-fts.js View on Github external
function ag2_1() {
  var loop;
  loop = G.iteratorM(something);
  return ag2_2(loop);
}
github awto / effectfuljs / test / samples / options / generators-out-fts.js View on Github external
function ag1_1(i) {
  var loop;
  loop = G.iteratorM(something);
  return ag1_2(i, loop);
}
github awto / effectfuljs / test / samples / options / generators-out-ft.js View on Github external
function ag3_4(ag3_v, _ag3_v) {
  var loop;
  loop = G.iteratorM(something());
  return ag3_5(ag3_v, _ag3_v, loop);
}